sito-hackit-16/themes/hm15/templates/authors.html

20 lines
604 B
HTML
Raw Permalink Normal View History

2015-03-13 12:58:31 +01:00
{% extends "base.html" %}
2016-01-25 18:53:49 +01:00
{% block title %}Authors - {{ SITENAME }}{% endblock %}
2015-03-13 12:58:31 +01:00
2016-01-25 18:53:49 +01:00
{% block breadcrumbs %}
{% if DISPLAY_BREADCRUMBS %}
<ol class="breadcrumb">
<li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li>
<li class="active">Authors</li>
</ol>
{% endif %}
{% endblock %}
2015-03-13 12:58:31 +01:00
2016-01-25 18:53:49 +01:00
{% block content %}
2015-03-13 12:58:31 +01:00
<h1>Authors on {{ SITENAME }}</h1>
{% for author, articles in authors|sort %}
<li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
{% endfor %}
{% endblock %}