mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-07 07:59:46 +00:00
21 lines
507 B
HTML
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 %}
|