Files
cjsatnarine.space/blog/templates/blog.html
CJSatnarine 6f5a806d24 aughhhh
2025-03-15 23:14:24 -04:00

16 lines
339 B
HTML

{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
<!-- Not sure what this page stuff is but I reckon I'll find out soon enough. -->
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}