moving icons. needs polish

This commit is contained in:
Dorian Wood 2024-09-22 16:10:18 -04:00
parent f9981670f2
commit 41588c42ef
1 changed files with 9 additions and 9 deletions

View File

@ -11,6 +11,8 @@
<article id="toot-{{toot.id}}" class="media box">
{% endif %}
<div class="media-content">
<div class="content">
<figure class="media-left">
<p class="image is-64x64 account-avatar">
<a href="{% url "user" toot.account.acct %}">
@ -18,16 +20,7 @@
alt="">
</a>
</p>
{% if reblog %}
<p class="image is-32x32 reblog-icon" >
<a href="{% url "user" reblog_by %}">
<img loading="auto" src ="{{ reblog_icon }}" alt="">
</a>
</p>
{% endif %}
</figure>
<div class="media-content">
<div class="content">
<p>
<strong>{{ toot.account.display_name | fix_emojos:toot.account.emojis | strip_html |safe}}</strong>
<small><a href="{% url "user" toot.account.acct %}">
@ -36,6 +29,13 @@
<small>{{ toot.created_at |humane_time }}</small>
</a>
{% if reblog %}
<figure>
<p class="image is-32x32" >
<a href="{% url "user" reblog_by %}">
<img loading="auto" src ="{{ reblog_icon }}" alt="">
</a>
</p>
</figure>
<br>
Boosted by @{{ reblog_by }}
{% endif %}