1
0
mirror of https://github.com/avinal/avinal.github.io.git synced 2026-07-04 07:40:09 +05:30

themes updated

This commit is contained in:
avinal
2020-09-29 11:19:46 +05:30
parent 9839145efe
commit 800cb1f297
36 changed files with 6850 additions and 1847 deletions
+10 -9
View File
@@ -1,18 +1,19 @@
{% extends "base.html" %}
{% block title %}
Archives {{ super() }}
Archives {{ super() }}
{% endblock %}
{% block page_header %}
Archives
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 %}
<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 %}