{% extends "base.html" %} {% block content %}

Tag: {{ tag }}

{% for post in posts %}
{% if post.type == 'farcaster' %} {% include "partials/summary-farcaster.html" %} {% elif post.type == 'note' %} {% include "partials/summary-note.html" %} {% else %} {% include "partials/summary-default.html" %} {% endif %}
{% else %}

No posts for this tag.

{% endfor %} {% if pagination.prev or pagination.next %} {% endif %}
{% endblock content %} {% block page_scripts %} {% if posts | selectattr("type", "equalto", "note") | list %} {% endif %} {% endblock page_scripts %}