- {% for entry in entries %}
- {% include "components/diarioentry.html" %}
- {% endfor %}
+
{% endblock %}
\ No newline at end of file
diff --git a/templates/game.html b/templates/game.html
index 1e330943..d39acbd0 100644
--- a/templates/game.html
+++ b/templates/game.html
@@ -13,13 +13,15 @@
-
- {% for mini in minis %}
- {% with record = mini %}
- {% include "minis/" + game_short_name + ".html" %}
- {% endwith %}
- {% endfor %}
+
+
+
+ {% for mini in minis %}
+ {% with record = mini %}
+ {% include "minis/" + game_short_name + ".html" %}
+ {% endwith %}
+ {% endfor %}
+
{% endblock %}
\ No newline at end of file
diff --git a/templates/profile.html b/templates/profile.html
index 682e559b..3541b844 100644
--- a/templates/profile.html
+++ b/templates/profile.html
@@ -23,61 +23,63 @@
Profilo di {{ ryg.username }} {% if session.get('user_id', '') == ryg.id %}Modifica{% endif %}
-
- {% if css.bio %}
-
-
- Bio
-
-
- {{ bio }}
+
+
+ {% if css.bio %}
+
+
+ Bio
+
+
+ {{ bio }}
+
+ {% endif %}
+
+ {% with record = ryg %}
+ {% include "minis/ryg.html" %}
+ {% endwith %}
+ {% if halloween %}
+ {% with record = halloween %}
+ {% include "minis/halloween2018.html" %}
+ {% endwith %}
+ {% endif %}
+ {% if tg %}
+ {% with record = tg %}
+ {% include "minis/tg.html" %}
+ {% endwith %}
+ {% endif %}
+ {% if discord %}
+ {% with record = discord %}
+ {% include "minis/discord.html" %}
+ {% endwith %}
+ {% endif %}
+ {% if steam %}
+ {% with record = steam %}
+ {% include "minis/steam.html" %}
+ {% endwith %}
+ {% endif %}
+ {% if dota %}
+ {% with record = dota %}
+ {% include "minis/dota.html" %}
+ {% endwith %}
+ {% endif %}
+ {% if osu %}
+ {% with record = osu %}
+ {% include "minis/osu.html" %}
+ {% endwith %}
+ {% endif %}
+ {% if lol %}
+ {% with record = lol %}
+ {% include "minis/lol.html" %}
+ {% endwith %}
+ {% endif %}
+ {% if ow %}
+ {% with record = ow %}
+ {% include "minis/ow.html" %}
+ {% endwith %}
+ {% endif %}
- {% endif %}
-
- {% with record = ryg %}
- {% include "minis/ryg.html" %}
- {% endwith %}
- {% if halloween %}
- {% with record = halloween %}
- {% include "minis/halloween2018.html" %}
- {% endwith %}
- {% endif %}
- {% if tg %}
- {% with record = tg %}
- {% include "minis/tg.html" %}
- {% endwith %}
- {% endif %}
- {% if discord %}
- {% with record = discord %}
- {% include "minis/discord.html" %}
- {% endwith %}
- {% endif %}
- {% if steam %}
- {% with record = steam %}
- {% include "minis/steam.html" %}
- {% endwith %}
- {% endif %}
- {% if dota %}
- {% with record = dota %}
- {% include "minis/dota.html" %}
- {% endwith %}
- {% endif %}
- {% if osu %}
- {% with record = osu %}
- {% include "minis/osu.html" %}
- {% endwith %}
- {% endif %}
- {% if lol %}
- {% with record = lol %}
- {% include "minis/lol.html" %}
- {% endwith %}
- {% endif %}
- {% if ow %}
- {% with record = ow %}
- {% include "minis/ow.html" %}
- {% endwith %}
- {% endif %}
{% endblock %}
\ No newline at end of file