the webdog update

This commit is contained in:
zyl 2024-11-08 18:42:07 -08:00
parent 00c90a12d7
commit 3c43403089
Signed by: zyl
SSH key fingerprint: SHA256:uxxbSXbdroP/OnKBGnEDk5q7EKB2razvstC/KmzdXXs
26 changed files with 29 additions and 4752 deletions

View file

@ -43,7 +43,7 @@
<div class="flex-spacer"></div>
<hr />
<footer id="footer">
bark bark awruff :3
bark bark awruff :3 &bullet; powered by <strong><a href="https://webdog.zyl.gay">webdog</a></strong>
<div class="badges">
{{ self::badge(badge="transbian.png", url="https://badge.les.bi", alt="transgender and lesbian flags") }}

View file

@ -1,3 +1,5 @@
{% extends "base.tera" %}
{% block content %}
<h1>{{ title }}</h1>
<div class="link-list">
<ul>
@ -6,3 +8,4 @@
{% endfor %}
</ul>
</div>
{% endblock content %}

View file

@ -1,3 +1,5 @@
{% extends "base.tera" %}
{% block content %}
{% if tag %}
<h1>blog posts tagged {{tag}}</h1>
<p><a href="/blog/">View all blog posts</a></p>
@ -22,3 +24,4 @@
</div>
{% endfor %}
</div>
{% endblock content %}

View file

@ -1,3 +1,5 @@
{% extends "base.tera" %}
{% block content %}
<div class="blog-post">
<h1 class="title">{{title}}</h1>
<span class="timestamp">published {{timestamp}}</span>
@ -20,3 +22,4 @@
{% endfor %}
</div>
</div>
{% endblock content %}

View file

@ -1,3 +1,5 @@
{% extends "base.tera" %}
{% block content %}
{% if tag %}
<h1>images tagged {{tag}}</h1>
<p><a href="/images/">view all images</a></p>
@ -21,3 +23,4 @@
</a>
{% endfor %}
</div>
{% endblock content %}

View file

@ -1,3 +1,5 @@
{% extends "base.tera" %}
{% block content %}
<div class="image-full">
<h1 class="title">{{title}}</h1>
<span class="timestamp">published {{timestamp}}</span>
@ -11,3 +13,4 @@
{% endfor %}
</div>
</div>
{% endblock content %}