18 lines
349 B
HTML
18 lines
349 B
HTML
{% 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 %}
|