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.
takahe/templates/activities/federated.html
2022-11-17 14:13:55 -07:00

12 lines
242 B
HTML

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