site/templates/projects.html

18 lines
380 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 %}
2023-03-10 21:34:45 -06:00
<div class="text-align-center">
<h1 class="header">
2021-11-09 21:31:32 -06:00
{{ section.title }}
</h1>
2023-03-10 21:34:45 -06:00
things I make
</div>
2021-11-09 21:31:32 -06:00
<ul>
{% for page in section.pages %}
2023-03-10 21:34:45 -06:00
<li><a href="{{ page.permalink | safe }}">{{ page.title }}: {{ page.description }}</a></li>
2021-11-09 21:31:32 -06:00
{% endfor %}
</ul>
{% endblock content %}