A dark theme for Zola, based on After Dark.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
392 B

{% extends "index.html" %}
{% block content %}
<h1>{{ section.title }}</h1>
{{ section.content | safe }}
{% for page in section.pages %}
<div class="post">
<h2 class="post-title">
<a href="{{ page.permalink }}">
{{ page.title }}
</a>
</h2>
<span class="post-date">{{ page.date | date(format="%Y-%m-%d") }}</span>
</div>
{% endfor %}
{% endblock content %}