Main HTML Templates

This commit is contained in:
2025-09-23 00:49:17 +02:00
parent 36f9f62a0e
commit cfe48023e6
9 changed files with 572 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<div class="content fit">
<h2 class="titlebar">🚧 Footer</h2>
<p class="text-center">I'm so sorry if you're viewing this shit on a phone</p>
<div class="centered"><img src="/images/under_construction_bar.gif"></div>
<div class="button-container">
{%for i in buttons%}
<a {% if i[1] != "": %} href="{{i[1]}}" {% endif %} ><img src="/buttons/{{i[2]}}" alt="{{i[0]}}"></a>
{%endfor%}
</div>
<div class="text-center">
<p>This site was last updated: {{updated}}</p>
<p>Website licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a></p>
<a href="{{url_for('homepage')}}">https://weingardt.dev/</a>
</div>
</div>