update templates to inherit themselves instead of manually doing it

This commit is contained in:
zyl 2024-11-05 13:54:04 -08:00
parent 32965f0cff
commit b1e7529efc
Signed by: zyl
SSH key fingerprint: SHA256:uxxbSXbdroP/OnKBGnEDk5q7EKB2razvstC/KmzdXXs
6 changed files with 37 additions and 55 deletions

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 %}