2022-11-13 15:14:38 -08:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Federated Timeline{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% include "activities/_home_menu.html" %}
|
|
|
|
|
|
|
|
<section class="columns">
|
|
|
|
<div class="left-column">
|
2022-11-13 17:42:47 -08:00
|
|
|
{% for post in posts %}
|
2022-11-13 15:14:38 -08:00
|
|
|
{% include "activities/_post.html" %}
|
|
|
|
{% empty %}
|
|
|
|
No posts yet.
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
<div class="right-column">
|
|
|
|
<h2>?</h2>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
{% endblock %}
|