1
ewpratten.com/templates/section.html
2021-08-21 14:18:57 -04:00

17 lines
402 B
HTML

{% extends "base.html" %}
{% block title %}
{{section.title}}
{% endblock title %}
{% block content %}
{{section.content | safe}}
{% if section.extra.inject_blog_posts %}
<ul>
{% for page in section.pages %}
<li class="blog-post-li"><a href="{{page.path}}">{{page.title}}</a> <span style="color:gray;">({{page.date}})</span>
</li>
{% endfor %}
</ul>
{% endif %}
{% endblock content %}