takahe/templates/activities/federated.html
2022-11-13 18:43:09 -07:00

21 lines
498 B
HTML

{% 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 %}