mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
27 lines
No EOL
848 B
HTML
27 lines
No EOL
848 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block prehead %}
|
|
<meta name="description" content="La Royal Games su {{ game_name }}">
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
|
|
{% endblock %}
|
|
|
|
{% block pagetitle %}
|
|
{{ game_name }}
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>
|
|
Royal Games su {{ game_name }}
|
|
</h1>
|
|
<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>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |