{% from theme('_helpers.html') import render_pagination with context %} {% extends theme("base.html") %} {%block title%} Authors | {{Config.get('site', 'site_name', 'Quokka site')}} {% endblock %} {% block content %}
{% include theme('sidebar.html') %} {{ menu.build_nodes(nodes=channels) }}

All authors

{% for author in authors.items %}
{% if author.email %}
{{ author.display_name }}
{{ author.display_name }}
{{author.get_value('position')}} {% endif %}
{% endfor %}
{{render_pagination(authors, request.path)}} {% include theme('footer.html') %}
{% endblock %}