dawn/templates/archive.html

12 lines
304 B
HTML
Raw Permalink Normal View History

2022-05-08 02:01:39 -04:00
{% extends "index.html" %}
{% block content %}
<div class="post">
<h1 class="post_title"><a class="post_link" href="{{ page.permalink | safe }}">{{ page.title }}</a></h1>
{% set section = get_section(path="_index.md") %}
{{ post::list(pages=section.pages) }}
</div>
{% endblock content %}