24 lines
559 B
HTML
24 lines
559 B
HTML
{% extends "base.html" %}
|
|
{% block title %}
|
|
{{section.title}}
|
|
{% endblock title %}
|
|
|
|
{% block head %}
|
|
{{ super() }}
|
|
<meta property="og:title" content="{{page.title}}" />
|
|
{% endblock head %}
|
|
|
|
{% 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 %} |