This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/activities/_mini_post.html
2022-12-07 09:12:43 -07:00

17 lines
438 B
HTML

{% 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 }}" 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>