1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-25 20:52:43 +00:00
Files
blag/blag/templates/archive.html
2021-03-08 21:35:51 +01:00

16 lines
291 B
HTML

{% extends "base.html" %}
{% block title %}{{ site.title }}{% endblock %}
{% block content %}
{% for entry in archive %}
{% if entry.title %}
<h1><a href="{{entry.dst}}">{{entry.title}}</a></h1>
{% endif %}
<p>Written on {{ entry.date.date() }}.</p>
{% endfor %}
{% endblock %}