summaryrefslogtreecommitdiffstats
path: root/templates/activities/_mini_post.html
blob: 335a8a48d22d16ee7bcdf74c1283b1383d77df65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% load static %}
{% load activity_tags %}
<div class="post mini" data-takahe-id="{{ post.id }}" role="article">

    <a href="{{ post.author.urls.view }}" tabindex="-1">
        <img src="{{ post.author.local_icon_url.relative }}" class="icon">
    </a>

    <a href="{{ post.author.urls.view }}" class="handle">
        {{ post.author.html_name_or_handle }}
    </a>

    <div class="content">
        {{ post.safe_content_local }}
    </div>
</div>