Only use static avatars (the coyote no longer rotates)

This commit is contained in:
Jason McBrayer 2018-09-03 19:46:51 -04:00
parent cbe682d7aa
commit c038253ef7
4 changed files with 5 additions and 5 deletions

View File

@ -41,7 +41,7 @@ mastodon.notifications()[0]
<small>{{ note.created_at |humane_time }}</small>
</span>)
</p>
{% include "main/toot_partial.html" with toot=note.status reblog=True reblog_by=note.account.acct reblog_icon=note.account.avatar %}
{% include "main/toot_partial.html" with toot=note.status reblog=True reblog_by=note.account.acct reblog_icon=note.account.avatar_static %}
<hr class="is-hidden">
{% elif note.type == 'favourite' %}
<p>
@ -58,7 +58,7 @@ mastodon.notifications()[0]
<article class="media">
<figure class="media-left">
<p class="image is-64x64">
<img src="{{ note.account.avatar }}" alt="">
<img src="{{ note.account.avatar_static }}" alt="">
</p>
</figure>
<div class="media-content" >

View File

@ -23,7 +23,7 @@ Brutaldon ({{ own_acct.username }}) - {{ timeline_name }} timelime
<h1 class="title">Your {{ timeline_name }} timeline</h1>
{% for toot in toots %}
{% if toot.reblog %}
{% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct reblog_icon=toot.account.avatar %}
{% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct reblog_icon=toot.account.avatar_static %}
{% else %}
{% include "main/toot_partial.html" with toot=toot reblog=False %}
{% endif %}

View File

@ -13,7 +13,7 @@
<figure class="media-left">
<p class="image is-64x64 account-avatar">
<a href="{% url "user" toot.account.acct %}">
<img src="{{ toot.account.avatar }}"
<img src="{{ toot.account.avatar_static }}"
alt="">
</a>
</p>

View File

@ -109,7 +109,7 @@ Brutaldon ({{ own_acct.username }}) - {{ user.acct }} timelime
{% for toot in toots %}
{% if toot.reblog %}
{% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct reblog_icon=toot.account.avatar %}
{% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct reblog_icon=toot.account.avatar_static %}
{% else %}
{% include "main/toot_partial.html" with toot=toot reblog=False %}
{% endif %}