summaryrefslogtreecommitdiffstats
path: root/templates/activities/post.html
blob: b44df400b851826094cf26ce336dca2459c9f5a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}

{% block title %}Post by {{ post.author.name_or_handle }}{% endblock %}

{% block content %}
    <nav>
        <a href="." class="selected">Post</a>
    </nav>

    <section class="columns">

        <div class="left-column">
            {% include "activities/_post.html" %}
        </div>

    </section>
{% endblock %}