Blog avatars take priority over user photos

pull/2/head
Noah 2014-04-07 08:59:50 -07:00
parent a46930b148
commit 61dce0f90f
1 changed files with 3 additions and 3 deletions

View File

@ -9,10 +9,10 @@
{% endif %}
<div class="blog-author">
{% if post["photo"] %}
<img src="{{ post['photo_url'] }}/{{ post['photo'] }}">
{% elif post["avatar"] %}
{% if post["avatar"] %}
<img src="/static/avatars/{{ post['avatar'] }}">
{% elif post["photo"] %}
<img src="{{ post['photo_url'] }}/{{ post['photo'] }}">
{% else %}
<img src="/static/avatars/default.png">
{% endif %}