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> <small>{{ note.created_at |humane_time }}</small>
</span>) </span>)
</p> </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"> <hr class="is-hidden">
{% elif note.type == 'favourite' %} {% elif note.type == 'favourite' %}
<p> <p>
@ -58,7 +58,7 @@ mastodon.notifications()[0]
<article class="media"> <article class="media">
<figure class="media-left"> <figure class="media-left">
<p class="image is-64x64"> <p class="image is-64x64">
<img src="{{ note.account.avatar }}" alt=""> <img src="{{ note.account.avatar_static }}" alt="">
</p> </p>
</figure> </figure>
<div class="media-content" > <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> <h1 class="title">Your {{ timeline_name }} timeline</h1>
{% for toot in toots %} {% for toot in toots %}
{% if toot.reblog %} {% 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 %} {% else %}
{% include "main/toot_partial.html" with toot=toot reblog=False %} {% include "main/toot_partial.html" with toot=toot reblog=False %}
{% endif %} {% endif %}

View File

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

View File

@ -109,7 +109,7 @@ Brutaldon ({{ own_acct.username }}) - {{ user.acct }} timelime
{% for toot in toots %} {% for toot in toots %}
{% if toot.reblog %} {% 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 %} {% else %}
{% include "main/toot_partial.html" with toot=toot reblog=False %} {% include "main/toot_partial.html" with toot=toot reblog=False %}
{% endif %} {% endif %}