takahe/templates/activities/federated.html
Andrew Godwin 34b24a0dcb More UI!
2022-11-13 16:15:14 -07:00

21 lines
507 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 timeline_posts %}
{% include "activities/_post.html" %}
{% empty %}
No posts yet.
{% endfor %}
</div>
<div class="right-column">
<h2>?</h2>
</div>
</section>
{% endblock %}