mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Use static locations for Riot icons
See https://github.com/vector-im/riot-web/issues/9009
This commit is contained in:
parent
3064952939
commit
4dfbae18fe
@ -6,11 +6,11 @@
|
|||||||
<img alt="" class="sender_avatar" src="{{ message.sender_avatar_url|mxc_to_http(32,32) }}" />
|
<img alt="" class="sender_avatar" src="{{ message.sender_avatar_url|mxc_to_http(32,32) }}" />
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if message.sender_hash % 3 == 0 %}
|
{% if message.sender_hash % 3 == 0 %}
|
||||||
<img class="sender_avatar" src="https://vector.im/beta/img/76cfa6.png" />
|
<img class="sender_avatar" src="https://riot.im/img/external/avatar-1.png" />
|
||||||
{% elif message.sender_hash % 3 == 1 %}
|
{% elif message.sender_hash % 3 == 1 %}
|
||||||
<img class="sender_avatar" src="https://vector.im/beta/img/50e2c2.png" />
|
<img class="sender_avatar" src="https://riot.im/img/external/avatar-2.png" />
|
||||||
{% else %}
|
{% else %}
|
||||||
<img class="sender_avatar" src="https://vector.im/beta/img/f4c371.png" />
|
<img class="sender_avatar" src="https://riot.im/img/external/avatar-3.png" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
</td>
|
</td>
|
||||||
<td class="logo">
|
<td class="logo">
|
||||||
{% if app_name == "Riot" %}
|
{% if app_name == "Riot" %}
|
||||||
<img src="http://matrix.org/img/riot-logo-email.png" width="83" height="83" alt="[Riot]"/>
|
<img src="http://riot.im/img/external/riot-logo-email.png" width="83" height="83" alt="[Riot]"/>
|
||||||
{% elif app_name == "Vector" %}
|
{% elif app_name == "Vector" %}
|
||||||
<img src="http://matrix.org/img/vector-logo-email.png" width="64" height="83" alt="[Vector]"/>
|
<img src="http://matrix.org/img/vector-logo-email.png" width="64" height="83" alt="[Vector]"/>
|
||||||
{% else %}
|
{% else %}
|
||||||
|
@ -5,11 +5,11 @@
|
|||||||
<img alt="" src="{{ room.avatar_url|mxc_to_http(48,48) }}" />
|
<img alt="" src="{{ room.avatar_url|mxc_to_http(48,48) }}" />
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if room.hash % 3 == 0 %}
|
{% if room.hash % 3 == 0 %}
|
||||||
<img alt="" src="https://vector.im/beta/img/76cfa6.png" />
|
<img alt="" src="https://riot.im/img/external/avatar-1.png" />
|
||||||
{% elif room.hash % 3 == 1 %}
|
{% elif room.hash % 3 == 1 %}
|
||||||
<img alt="" src="https://vector.im/beta/img/50e2c2.png" />
|
<img alt="" src="https://riot.im/img/external/avatar-2.png" />
|
||||||
{% else %}
|
{% else %}
|
||||||
<img alt="" src="https://vector.im/beta/img/f4c371.png" />
|
<img alt="" src="https://riot.im/img/external/avatar-3.png" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user