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>
|
2018-07-25 19:10:43 +00:00
|
|
|
</div>
|
2018-06-13 21:32:26 +00:00
|
|
|
{% endblock %}
|