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/authors.html
T
2020-09-28 17:05:15 +05:30

21 lines
434 B
HTML

{% extends "base.html" %}
{% block title %}
Authors {{ super() }}
{% endblock %}
{% block page_header %}
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 %}