summaryrefslogtreecommitdiffstats
path: root/templates/activities/local.html
blob: 520a0cea1cecec5fb38de08673d83bdd319d9ebb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}

{% block title %}Local Timeline{% endblock %}

{% block content %}
    {% include "activities/_home_menu.html" %}

    <section class="columns">
        <div class="left-column">
            {% for post in posts %}
                {% include "activities/_post.html" %}
            {% empty %}
                No posts yet.
            {% endfor %}
        </div>
        <div class="right-column">
            <h2>?</h2>
        </div>

    </section>
{% endblock %}