{% extends "blog/layout.jinja" %} {% block page_title %} {{ super() }}{% if page.number > 1 %} page {{ page_number }}{% endif %} {% endblock %} {% block menu %} {{ super() }} {% if page.has_next() %} {% endif %} {% if page.has_previous() %} {% if page.previous_page_number() == 1 %} {% else %} {% endif %} {% endif %} {% endblock %} {% block content %} {% for item in page.object_list %}

{{ item.title }}

{# {{ item.author.first_name }}  #} {% if config.DISQUS_SHORTNAME %}   0 Comments {% endif %}
{% if config.READMORE_TAG in item.content %} {{ item.content|readmore|safe }} {% else %} {{ item.content|safe }} {% endif %}
{% if config.READMORE_TAG in item.content %} Read more » {% endif %}

{% else %}
No results found!
{% endfor %} {# {% if paginator.num_pages > 1 %} {% endif %} #} {% endblock %} {% block footer %} {{ super() }} {% if config.DISQUS_SHORTNAME %} {% from '_macros.jinja' import disqus with context %} {{ disqus() }} {% endif %} {% endblock %}