mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-07 07:59:46 +00:00
17 lines
409 B
HTML
17 lines
409 B
HTML
|
{% load static %}
|
||
|
{% load activity_tags %}
|
||
|
<div class="post mini" data-takahe-id="{{ post.id }}">
|
||
|
|
||
|
<a href="{{ post.author.urls.view }}">
|
||
|
<img src="{{ post.author.local_icon_url }}" class="icon">
|
||
|
</a>
|
||
|
|
||
|
<a href="{{ post.author.urls.view }}" class="handle">
|
||
|
{{ post.author.name_or_handle }}
|
||
|
</a>
|
||
|
|
||
|
<div class="content">
|
||
|
{{ post.safe_content_local }}
|
||
|
</div>
|
||
|
</div>
|