microblog.pub/app/templates/index.html
2022-06-25 10:20:07 +02:00

13 lines
235 B
HTML

{%- import "utils.html" as utils with context -%}
{% extends "layout.html" %}
{% block content %}
{% include "header.html" %}
{% for outbox_object in objects %}
{{ utils.display_object(outbox_object) }}
{% endfor %}
{% endblock %}