mirror of
https://github.com/jointakahe/takahe.git
synced 2024-12-02 12:11:08 +00:00
17 lines
349 B
HTML
17 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 %}
|