15 lines
346 B
HTML
15 lines
346 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<a href="{{ get_url(path='@/_index.md') }}"> <- back to landing</a>
|
|
<h1 class="title">
|
|
{{ section.title }}
|
|
</h1>
|
|
|
|
{% for page in section.pages %}
|
|
<hr/>
|
|
<h2><a href="{{ page.permalink | safe }}">{{ page.title }}</a> ({{page.date}})</h2>
|
|
{{ page.content | safe }}
|
|
{% endfor %}
|
|
{% endblock content %}
|