{%- import "utils.html" as utils with context -%} {% extends "layout.html" %} {% block head %} {% if request.path_params.tag %}#{{ request.path_params.tag }} | {% endif %} {{ local_actor.display_name }} Posts {% endblock %} {% block content %} {% include "header.html" %}
{% if request.path_params.tag %}

Back Showing posts tagged #{{ request.path_params.tag }}

{% endif %} {% if objects %}
{% for outbox_object in objects %} {% if outbox_object.ap_type in ["Note", "Video", "Question"] %} {{ utils.display_object(outbox_object) }} {% elif outbox_object.ap_type == "Announce" %}
{{ utils.display_object(outbox_object.relates_to_anybox_object, is_h_entry=False) }}
{% endif %} {% endfor %}
{% if has_previous_page or has_next_page %} {% endif %} {% else %}

Nothing to see here yet!

{% endif %}
{% endblock %}