1
0
mirror of https://github.com/avinal/avinal.github.io.git synced 2026-07-04 15:50:08 +05:30
Files
avinal.github.io/themes/alchemy/templates/archives.html
T
2020-09-28 17:05:15 +05:30

19 lines
463 B
HTML

{% extends "base.html" %}
{% block title %}
Archives {{ super() }}
{% endblock %}
{% block page_header %}
Archives
{% endblock %}
{% block content %}
<dl class="row">
{% for article in dates %}
<dt class="col-sm-4">{{ article.locale_date }}</dt>
<dd class="col-sm-8"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}{% if article.link %} <i class="fas fa-link"></i>{% endif %}</a></dd>
{% endfor %}
</dl>
{% endblock %}