{%- import "utils.html" as utils with context -%} {% extends "layout.html" %} {% block head %} {% endblock %} {% block content %} {% include "header.html" %}
{% for outbox_object in objects %} {% if outbox_object.ap_type in ["Note", "Article", "Video"] %} {{ utils.display_object(outbox_object) }} {% elif outbox_object.ap_type == "Announce" %}
{{ local_actor.display_name }} shared
{{ utils.display_object(outbox_object.relates_to_anybox_object) }} {% endif %} {% endfor %}
{% if has_previous_page %} Previous {% endif %} {% if has_next_page %} Next {% endif %} {% endblock %}