Files
cjsatnarine.space/templates/amateur_linguist.html
2025-03-31 19:30:00 -04:00

17 lines
326 B
HTML

{% extends "base.html" %}
{% block content %}
<h1 id="amateur_linguist" 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 %}