{{ page.title }}
{{ page.summary | safe }}
{{ self::page_info(page=page) }}{% macro list_posts(section, count=0) %}
{% set section = get_section(path=section~"/_index.md") %}
{% for page in section.pages %}
{% if loop.index > count and count != 0 %}
{% break %}
{% endif %}
{{ macros::print_article(page=page) }}
{% endfor %}
{% endmacro %}
{% macro print_article(page) %}
{{ page.summary | safe }}{{ page.title }}