blob: 79ce9a303b798b23ebe01761cc2d4ff5d8f757da (
plain)
1
2
3
4
5
6
7
8
9
10
11
  | 
{% extends "base.html" %}
{% block title %}Local Timeline{% endblock %}
{% block content %}
    {% for post in posts %}
        {% include "activities/_post.html" %}
    {% empty %}
        No posts yet.
    {% endfor %}
{% endblock %}
 
  |