1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/templates/game.html

27 lines
848 B
HTML
Raw Permalink Normal View History

2018-06-13 21:32:26 +00:00
{% extends 'base.html' %}
2018-07-22 15:15:29 +00:00
{% block prehead %}
<meta name="description" content="La Royal Games su {{ game_name }}">
2018-10-02 22:18:41 +00:00
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
2018-07-22 15:15:29 +00:00
{% endblock %}
2018-06-13 21:32:26 +00:00
{% block pagetitle %}
{{ game_name }}
{% endblock %}
{% block body %}
<h1>
Royal Games su {{ game_name }}
</h1>
2019-01-04 01:15:44 +00:00
<div class="omnicontainer">
<div class="game">
<div class="game-panels">
{% for mini in minis %}
{% with record = mini %}
{% include "minis/" + game_short_name + ".html" %}
{% endwith %}
{% endfor %}
</div>
2019-01-03 13:56:04 +00:00
</div>
</div>
2018-06-13 21:32:26 +00:00
{% endblock %}