{% include "header.html" %}
{% for post in posts %}
{% if tag in post.tags %}
{{ post.date }}
{{ post.title }}
{% for tag_ in post.tags %}
{% if tag_ != tag %}
#{{ tag_ }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}