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

84 lines
2.8 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-09-27 10:52:41 +00:00
{% block posthead %}
<script>
var audio = new Audio("{{ url_for('static', filename='ee.ogg') }}");
function ee() {
fetch("/ee/r", {
method: "POST",
mode: "same-origin",
credentials: "same-origin"
});
2018-10-01 15:46:06 +00:00
document.getElementById("main-title").innerHTML = '<span class="eetip" title="When there is something strange, in the neighbourhood, who you gonna call?">R</span>oyal Games';
2018-09-27 10:52:41 +00:00
audio.play();
}
</script>
{% endblock %}
2018-06-01 11:36:30 +00:00
{% block body %}
2018-09-27 10:52:41 +00:00
<h1 id="main-title">
2018-10-01 15:46:06 +00:00
Royal Games
2018-06-01 11:36:30 +00:00
</h1>
2018-07-24 17:23:19 +00:00
<div class="main-page">
<div class="left">
2018-08-08 16:32:41 +00:00
<div class="box">
<div class="upper-box">
2018-08-09 17:12:59 +00:00
Prossimi eventi
2018-08-08 16:32:41 +00:00
</div>
<div class="lower-box">
{% for event in next_events %}
{% include "/components/event.html" %}
2018-07-24 17:45:12 +00:00
{% endfor %}
2018-08-08 16:32:41 +00:00
</div>
2018-07-24 17:45:12 +00:00
</div>
2018-09-13 22:52:00 +00:00
{% include "components/wikibox.html" %}
2018-08-08 16:32:41 +00:00
<div class="box">
<div class="upper-box">
Citazione casuale dal diario
</div>
<div class="lower-box">
{% include "components/diarioentry.html" %}
<a href="/diario">Visualizza tutto</a>
</div>
2018-07-29 21:59:25 +00:00
</div>
2018-08-08 16:32:41 +00:00
2018-07-24 17:23:19 +00:00
</div>
<div class="right">
2018-08-09 17:12:59 +00:00
<div class="box">
<div class="upper-box">
Membri
</div>
<div class="lower-box">
<ul>
{% for royal in royals %}
<li><a href="/profile/{{ royal.username }}">{{ royal.username }}</a></li>
{% endfor %}
</ul>
</div>
2018-07-24 17:45:12 +00:00
</div>
2018-08-09 17:12:59 +00:00
<div class="box">
<div class="upper-box">
Resoconti
</div>
<div class="lower-box">
<ul>
<li><a href="/game/ryg">Royal Games</a></li>
<li><a href="/game/tg">Telegram</a></li>
<li><a href="/game/discord">Discord</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-->
2018-08-09 17:12:59 +00:00
<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>
</div>
2018-07-24 17:45:12 +00:00
</div>
2018-07-24 17:23:19 +00:00
</div>
</div>
2018-06-01 11:36:30 +00:00
{% endblock %}