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 %}
|
2019-01-06 18:29:06 +00:00
|
|
|
<h1 class="super-title">
|
|
|
|
<img src="{{ url_for('static', filename='FixMeRYGLogo.jpg') }}" alt=""> Royal Games
|
2018-06-01 11:36:30 +00:00
|
|
|
</h1>
|
2019-01-06 18:29:06 +00:00
|
|
|
<div class="two-columns">
|
2018-07-24 17:23:19 +00:00
|
|
|
<div class="left">
|
2019-01-06 18:29:06 +00:00
|
|
|
{% 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">
|
2019-01-06 18:29:06 +00:00
|
|
|
{% 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 %}
|