site/templates/projects.html
2022-07-22 21:31:09 -05:00

15 lines
285 B
HTML

{% extends "base.html" %}
{% block title %}{{section.title}}{% endblock title %}
{% block content %}
<h1>
{{ section.title }}
</h1>
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}