{% 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 %}
{% if older_than %} {% endif %} {% if newer_than %} {% endif %}
{% endblock %} {% block links %} {% if older_than %}{% endif %} {% if newer_than %}{% endif %} {% endblock %}