takahe/templates/activities/local.html
2022-11-17 14:13:55 -07:00

11 lines
238 B
HTML

{% extends "base.html" %}
{% block title %}Local Timeline{% endblock %}
{% block content %}
{% for post in posts %}
{% include "activities/_post.html" %}
{% empty %}
No posts yet.
{% endfor %}
{% endblock %}