{% import "macros.html" as macros %} {% extends "root.html" %} {% block head %} {{ config.name }} {% endblock %} {% block body %} {{ macros::nav(selected="home") }}
{{ macros::timelines_nav(selected="home") }} {% if list|length == 0 %}
✨ Welcome to {{ config.name }}!
Join some communities to populate your home timeline!
{% else %}
{% for post in list %} {{ components::post(post=post[0], owner=post[1], secondary=true, community=post[2], show_community=true) }} {% endfor %}
{% endif %}
{% endblock %}