12 lines
238 B
HTML
12 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 %}
|