mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-14 03:11:46 +00:00
11 lines
242 B
HTML
11 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 %}
|