2022-11-12 05:02:43 +00:00
|
|
|
{% load static %}
|
|
|
|
<div class="post">
|
|
|
|
|
|
|
|
{% if post.author.icon_uri %}
|
|
|
|
<img src="{{post.author.icon_uri}}" class="icon">
|
|
|
|
{% else %}
|
|
|
|
<img src="{% static "img/unknown-icon-128.png" %}" class="icon">
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<h3 class="author">
|
2022-11-12 06:04:43 +00:00
|
|
|
<a href="{{ post.author.urls.view }}">
|
|
|
|
{{ post.author.name_or_handle }} <small>@{{ post.author.handle }}</small>
|
|
|
|
</a>
|
2022-11-12 05:02:43 +00:00
|
|
|
</h3>
|
|
|
|
<time>
|
2022-11-13 04:14:21 +00:00
|
|
|
<a href="{{ post.urls.view }}">
|
|
|
|
{% if post.authored %}
|
|
|
|
{{ post.authored | timesince }} ago
|
|
|
|
{% else %}
|
|
|
|
{{ post.created | timesince }} ago
|
|
|
|
{% endif %}
|
|
|
|
</a>
|
2022-11-12 05:02:43 +00:00
|
|
|
</time>
|
|
|
|
<div class="content">
|
|
|
|
{{ post.safe_content }}
|
|
|
|
</div>
|
|
|
|
</div>
|