i lost track of what I changed I swear the git commits will be better

This commit is contained in:
CJSatnarine
2025-03-22 23:55:35 -04:00
parent 3661438008
commit fdcee34f41
22 changed files with 120 additions and 93 deletions

View File

@@ -0,0 +1,16 @@
{% extends "base.html" %}
{% block content %}
<h1 id="adventuring_animator" class="title">
{{ section.title }}
</h1>
{{ section.content | safe }}
<ul>
{% for page in section.pages %}
<li><a id="blog_colour" href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}