{% from theme('_helpers.html') import render_pagination, render_list_item, render_author_sidebar with context %} {% extends theme("base.html") %} {%block title%} {{author.display_name}} | {{Config.get('site', 'site_name', 'Quokka site')}} {% endblock %} {% block seo_meta %} {% endblock %} {% block meta %} {{ super() }} {% endblock meta %} {% block content %}
{{Config.get('site', 'site_name')}} {{render_author_sidebar(author)}}

{{ author.bio }}

←Authors
{{ menu.build_nodes(nodes=channels) }}

Contents written by "{{author.display_name}}"

{% for content in contents.items %} {{render_list_item(content)}} {% endfor %} {{render_pagination(contents, request.path)}} {% include theme('footer.html') %}
{% endblock %}