{% extends "baselite.html" %} {% block content %} {% if articles %} {% for article in articles_page.object_list if article.category.name == 'news' %}

{{ article.title }}

{% if DISPLAY_ARTICLE_INFO_ON_INDEX %}
{% include "includes/article_info.html" %}
{% endif %}
{{ article.summary }} {% include 'includes/comment_count.html' %} {{ _('more') }} ...

{% endfor %} {% endif %} {% if articles %} {% for article in articles_page.object_list if FAVORITES_TAG in article.tags %}

{{ article.title }}

{% if DISPLAY_ARTICLE_INFO_ON_INDEX %}
{% include "includes/article_info.html" %}
{% endif %}
{{ article.summary }} {% include 'includes/comment_count.html' %} {{ _('more') }} ...

{% endfor %} {% endif %} {#% include 'includes/pagination.html' %#} {% endblock content %}