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