2022-11-13 15:14:38 -08:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Federated Timeline{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-11-17 16:43:00 -08:00
|
|
|
{% for post in posts %}
|
|
|
|
{% include "activities/_post.html" %}
|
|
|
|
{% empty %}
|
|
|
|
No posts yet.
|
|
|
|
{% endfor %}
|
2022-11-13 15:14:38 -08:00
|
|
|
{% endblock %}
|