world/templates/index.html

32 lines
709 B
HTML
Raw Normal View History

2023-12-21 13:26:13 +01:00
{% extends "base.html" %}
{% block content %}
2023-12-22 14:25:00 +01:00
<h2>{{ section.title }}</h2>
<noscript>
Your browser doesn't support JS. This is so cool!
</noscript>
2023-12-21 13:26:13 +01:00
<div class='md-content'>
{{ section.content | safe }}
</div>
{% endblock content %}
{% block root %}
2023-12-22 14:25:00 +01:00
<div class='screen fader'>
<p>
<img src='/load.gif' width='46px' height='48px' style='margin-bottom:8px' /><br/>
2024-01-11 04:38:16 +01:00
Loading . . .
2023-12-22 14:25:00 +01:00
<span style='font-size:50%;display:block;margin-top:3em;color:#777777 !important'>
Credit for loading gif to
<a href='https://bdragon1727.itch.io/pixel-loading-pack-3'>
BDragon1727
</a>
</span>
</p>
</div>
{% endblock root %}