1
ewpratten.com/templates/section.html

19 lines
453 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 %}
{% if not page.extra.hidden %}
<li class="blog-post-li"><a href="{{page.path}}">{{page.title}}</a> <span style="color:gray;">({{page.date}})</span>
</li>
{% endif %}
{% endfor %}
</ul>
{% endif %}
{% endblock content %}