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

28 lines
878 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 }}">
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 %}
2019-01-09 15:52:34 +00:00
{{ mini_type._mini_full_name }}
2018-06-13 21:32:26 +00:00
{% endblock %}
{% block body %}
<h1>
2019-01-09 15:52:34 +00:00
Royal Games su {{ mini_type._mini_full_name }}
2018-06-13 21:32:26 +00:00
</h1>
2019-02-21 00:43:20 +00:00
{% if mini_type._mini_name == "ow" %}
<div>
Overwatch updates are currently disabled.
</div>
{% endif %}
2019-01-08 18:43:26 +00:00
<div class="game">
<div class="game-panels">
2019-01-09 15:52:34 +00:00
{% for record in mini_data %}
2019-01-09 16:19:39 +00:00
{% include "minis/" + mini_type._mini_name + ".html" %}
2019-01-08 18:43:26 +00:00
{% endfor %}
2019-01-03 13:56:04 +00:00
</div>
</div>
2018-06-13 21:32:26 +00:00
{% endblock %}