{%- 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", "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 %}
{% if has_previous_page %} Previous {% endif %} {% if has_next_page %} Next {% endif %}
{% endif %} {% else %}

Nothing to see here yet!

{% endif %} {% endblock %}