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
+11 -11
View File
@@ -1,20 +1,20 @@
{% extends "base.html" %}
{% block title %}
Authors {{ super() }}
Authors {{ super() }}
{% endblock %}
{% block page_header %}
Authors
Authors
{% endblock %}
{% block content %}
<table class="table table-bordered table-striped">
{% for author, articles in authors|sort %}
<tr>
<td><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a></td>
<td>{{ articles|count }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}
<table class="table table-bordered table-striped">
{% for author, articles in authors|sort %}
<tr>
<td><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a></td>
<td>{{ articles|count }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}