{% extends "base.html" %} {% block jumbotron %} {% if page.index_title %}

{{ page.index_title }}

{% endif %} {{ super() }} {% endblock %} {% block content %}

{{ page.site_title }}

{% set clsname= 'current_tag tag_index' if not group_value else "tag_index" %} {{ page.link_to('/index.yml', attrs={'class':clsname}, text="ALL") }} {% for tag in contents.tags %} {% set clsname= 'current_tag tag_index' if tag == group_value else "tag_index"%} {{ page.link_to('/index_tags.yml', group_value=tag, text=tag, attrs={'class':clsname}) }} {% endfor %}
{% for article in articles %}
{% if article.get_config('title', '') %}
{{article.title}}
{% endif %}
{{ article.get_abstract(256)}}
{% endfor %}
{% import "blog_macros.html" as blog_macros %} {{ blog_macros.index_pagination(page, group_value, num_pages, cur_page, is_last) }}
{% endblock content %}