site/templates/projects.html

15 lines
285 B
HTML
Raw Normal View History

2021-11-09 21:31:32 -06:00
{% extends "base.html" %}
2022-07-22 21:31:09 -05:00
{% block title %}{{section.title}}{% endblock title %}
2021-11-09 21:31:32 -06:00
{% 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 %}