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

36 lines
1 KiB
HTML
Raw Normal View History

2018-06-01 11:36:30 +00:00
{% extends 'base.html' %}
{% block pagetitle %}
2018-06-07 13:31:32 +00:00
Pagina principale
2018-06-01 11:36:30 +00:00
{% endblock %}
{% block body %}
<h1>
2018-06-04 09:58:27 +00:00
Royal Games
2018-06-01 11:36:30 +00:00
</h1>
2018-06-01 11:45:45 +00:00
<p>
2018-07-15 12:41:42 +00:00
Benvenuto al sito web della Royal Games! Sta lentamente migliorando, ma spero che comunque collaboriate a migliorarlo!
2018-06-01 11:45:45 +00:00
</p>
2018-07-15 12:41:42 +00:00
<h2>Profili</h2>
2018-06-05 10:31:11 +00:00
<ul>
{% for user in royals %}
2018-07-15 12:41:42 +00:00
<li><a href="profile/{{ user.username }}">{{ user.username }}</a></li>
{% endfor %}
</ul>
<h2>Giochi</h2>
<ul>
<li><a href="game/ryg">Royal Games</a></li>
<li><a href="game/steam">Steam</a></li>
<li><a href="game/dota">Dota 2</a></li>
<li><a href="game/rl">Rocket League</a></li>
<li><a href="game/lol">League of Legends</a></li>
<li><a href="game/ow">Overwatch</a></li>
<li><a href="game/osu">osu!</a></li>
</ul>
<h2>Wiki</h2>
<ul>
{% for key in wiki_pages %}
<li><a href="wiki/{{ key }}">{{ key }}</a></li>
2018-06-05 10:31:11 +00:00
{% endfor %}
</ul>
2018-06-01 11:36:30 +00:00
{% endblock %}