{% extends "layouts/default.twig" %}
{% block content %}
{% if posts.paginated %}
					<h1>${ feather | capitalize }</h1>
{% endif %}
{% for post in posts.paginated %}
{% include "feathers/" ~ post.feather ~ ".twig" %}
{% else %}
					<h1>${ "No %s" | translate | format(feather | capitalize) }</h1>
					<p>${ "There don't seem to be any posts as the Feather you specified." | translate }</p>
{% endfor %}
{% endblock %}