{% macro posts_latest(section, count) %} {% set section = get_section(path=section~"/_index.md") %} {% for page in section.pages %} {% if loop.index > count %} {% break %} {% endif %} {{ macros::print_article(page=page) }} {% endfor %} {% endmacro %} {% macro print_article(page) %}

{{ page.title }}

{{ page.summary | safe }}

{% endmacro %}