blob: b6143c3f6d0453faee76a37081c542c4d5ccd021 (
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 %}Federated 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 %}
 |