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

Nothing to see here yet!

{% endif %} {% endblock %}