{% extends "base.html" %} {% block title %} {{ page.site_title | striptags }} {% endblock %} {% block jumbotron %} {% if page.index_title %}

{{ page.index_title }}

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

{{ page.site_title }}

{% endblock topblock_site_title %}
{% block topblock_tags %} {% 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_tag.yml', group_value=tag, text=tag, attrs={'class':clsname}) }} {% endfor %} {% endblock topblock_tags %}
{% endblock topblock %}
{% block articleindex %}
{% for article in articles %} {% block articlebox scoped %} {% endblock articlebox %} {% endfor %}
{% endblock articleindex %}
{% block pagination %} {% import "blog_macros.html" as blog_macros %} {{ blog_macros.index_pagination(page, group_value, num_pages, cur_page, is_last) }} {% endblock pagination %}
{% endblock content %}