{% extends "layout.html" %} {% import 'utils.html' as utils %} {% block header %} {% endblock %} {% block content %}
{% include "header.html" %}
{% for item in outbox_data %} {% if item | has_type('Announce') %} {% set boost_actor = item.activity.actor | get_actor %}

{{ boost_actor.name }} boosted

{% if item.meta.object %} {{ utils.display_note(item.meta.object, ui=False) }} {% endif %} {% elif item | has_type('Create') %} {{ utils.display_note(item.activity.object, meta=item.meta, no_color=True) }} {% endif %} {% endfor %} {{ utils.display_pagination(older_than, newer_than) }}
{% endblock %} {% block links %}{{ utils.display_pagination_links(older_than, newer_than) }}{% endblock %}