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

39 lines
1.3 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 %}
2018-10-02 22:18:41 +00:00
{% block prehead %}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
{% endblock %}
2018-06-01 11:36:30 +00:00
{% block body %}
<h1 class="super-title">
<img src="{{ url_for('static', filename='FixMeRYGLogo.jpg') }}" alt=""> Royal Games
2018-06-01 11:36:30 +00:00
</h1>
<div class="two-columns">
2018-07-24 17:23:19 +00:00
<div class="left">
{% if not g.logged_in %}
{% include "components/welcome.html" %}
{% endif %}
{% if g.logged_in %}
{% include "components/eventlist.html" %}
{% include "components/diariooftheday.html" %}
{% endif %}
{% include "components/memberbox.html" %}
2018-07-24 17:23:19 +00:00
</div>
<div class="right">
{% if not g.logged_in %}
{% include "components/whatarewe.html" %}
{% endif %}
{% if g.logged_in %}
{% include "components/links.html" %}
{% endif %}
{% include "components/gamestatsbox.html" %}
{% if g.logged_in %}
{% include "components/wikibox.html" %}
{% endif %}
2018-07-24 17:23:19 +00:00
</div>
</div>
2018-06-01 11:36:30 +00:00
{% endblock %}