This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.

12 lines
238 B
HTML
Raw Normal View History

2022-11-13 18:42:47 -07:00
{% extends "base.html" %}
{% block title %}Local Timeline{% endblock %}
{% block content %}
2022-11-17 17:43:00 -07:00
{% for post in posts %}
{% include "activities/_post.html" %}
{% empty %}
No posts yet.
{% endfor %}
2022-11-13 18:42:47 -07:00
{% endblock %}