diff options
Diffstat (limited to 'templates/activities/local.html')
-rw-r--r-- | templates/activities/local.html | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/templates/activities/local.html b/templates/activities/local.html index 520a0ce..79ce9a3 100644 --- a/templates/activities/local.html +++ b/templates/activities/local.html @@ -3,19 +3,9 @@ {% block title %}Local 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> + {% for post in posts %} + {% include "activities/_post.html" %} + {% empty %} + No posts yet. + {% endfor %} {% endblock %} |