{% extends "base.html" %} {% block title %}Home{% endblock %} {% block content %} {% for event in events %} {% if event.type == "post" %} {% include "activities/_post.html" with post=event.subject_post %} {% elif event.type == "boost" %}
{{ event.subject_identity.name_or_handle }} boosted
{% include "activities/_post.html" with post=event.subject_post %} {% endif %} {% empty %} Nothing to show yet. {% endfor %} {% endblock %}