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

22 lines
532 B
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-06-04 09:58:27 +00:00
Benvenuto al sito web della Royal Games! E' ancora un po' triste e spoglio, ma spero che collaboriate a migliorarlo!
2018-06-01 11:45:45 +00:00
</p>
<p>
2018-06-05 10:31:11 +00:00
Attualmente, sto sviluppando i <b>profili RYG</b>!
2018-06-01 11:45:45 +00:00
</p>
2018-06-05 10:31:11 +00:00
<ul>
{% for user in royals %}
<li><a href="/profile/{{ user.username }}">{{ user.username }}</a></li>
{% endfor %}
</ul>
2018-06-01 11:36:30 +00:00
{% endblock %}