{% extends "layouts/default.twig" %}
{% block content %}
{% if posts.paginated %}
		<h1>${ "Posts tagged with &#8220;%s&#8221;" | translate | format(tag | escape) }</h1>
{% endif %}
{% for post in posts.paginated %}
{% include "feathers/" ~ post.feather ~ ".twig" %}
{% else %}
					<h1>${ "No Posts" | translate }</h1>
					<p>${ "There don't be any posts tagged as &#8220;%s&#8221;." | translate | format(tag | escape) }</p>
{% endfor %}
{% endblock %}