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

Contents with the tag "{{request.view_args.tag}}"

{{render_list(contents.items)}} {{render_pagination(contents, request.path)}} {% include theme('footer.html') %}
{% endblock %}