biter/templates/tweet.html
2024-03-13 21:48:49 +03:00

21 lines
668 B
HTML

<div class="tweet">
<div class="author">
<span class="name">{{ author }}</span>
<a class="handle" href="{{ author_url }}">@{{ handle }}</a>
</div>
<div class="content">
<p>{{ content|safe }}</p>
{% match image %} {% when Some with (link) %}
<img
src="{{ link }}"
alt="{% match alt %} {% when Some with (text) %} {{ text }} {% when None %}{% endmatch %}"
referrerpolicy="no-referrer"
crossorigin="anonymous"
/>
{% when None %} {% endmatch %} {% for embed in media %}
<br />
<a href="{{ embed }}">embedded media {{ loop.index }}: {{ embed }}</a>
{% endfor %}
</div>
<a class="original-link" href="{{ url }}">View original</a>
</div>