{% extends "base.html" %} {% block styles %} {{ super() }} {% endblock %} {% block title %}Autores | {{ SITENAME }}{% endblock %} {% block bannertext %}

Authors

{% endblock %} {% block content %}
{% set BREADCRUMB_ELEMENTS = [("{} Blog".format(SITENAME), "blog"), ("Autores", None)] %} {% include "includes/breadcrumbs.html" %}
    {% for author, articles in authors|sort %}
  • {{ author.name }} {{ articles|count }}
    {{ author.name }} {% for article in articles %} {{ article.title }} {% endfor %}
  • {% endfor %}
{% endblock %}