{% extends theme('layouts/1-column.html') %} {% from theme('macros/paginator.html') import paginator with context %} {% set meta = { 'title': _('Posts'), 'description': _("%(site)s posts", site=config['SITE_TITLE']), 'keywords': [_('posts')], 'robots': 'noindex', } %} {% set bundle = 'search' %} {% block breadcrumb %}
  • {{ _('Posts') }} {{ _('%(start)s to %(end)s on %(total)s', start=posts.page_start, end=posts.page_end, total=posts.total) }}
  • {% endblock %} {% block main_content %}
    {{ paginator(posts) }}
    {% endblock %}