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

20 lines
447 B
HTML
Raw 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 }}">
{% endblock %}
2018-06-13 21:32:26 +00:00
{% block pagetitle %}
{{ game_name }}
{% endblock %}
{% block body %}
<h1>
Royal Games su {{ game_name }}
</h1>
{% for mini in minis %}
{% with record = mini %}
{% include "minis/" + game_short_name + ".html" %}
{% endwith %}
{% endfor %}
{% endblock %}