{% 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) %}
	<article>
		<h1><a href="{{ page.permalink }}">{{ page.title }}</a></h1>
		<p>{{ page.summary | safe }}</p>
		{{ self::page_info(page=page) }}
	</article>
{% endmacro %}

{% macro page_info(page) %}
	{% if page.date %}
		<div class="info">
			<span class="date">{{ page.date }}</span>
			{%- if page.extra.author -%}
				, <span class="author">{{ page.extra.author }}</span>
			{% endif %}
			{% if page.taxonomies.categories %}
				<div class="taxonomy">
					{{ self::list_taxonomy(kind="categories", prepend="#") }}
				</div>
			{% endif %}
		</div>
	{% endif %}
{% endmacro %}

{% macro list_taxonomy(kind, prepend="") %}
	<ul>
		{% set taxonomy = get_taxonomy(kind=kind) %}
		{% for term in taxonomy.items %}
			<li class="item"><a href="{{ term.permalink | safe }}">{{prepend}}{{ term.name }}</a></li>
		{% endfor %}
	</ul>
{% endmacro list_categories %}