diff --git a/app/templates/post/_post_full.html b/app/templates/post/_post_full.html index 25869602..eea01101 100644 --- a/app/templates/post/_post_full.html +++ b/app/templates/post/_post_full.html @@ -69,7 +69,7 @@ {% if post.type == POST_TYPE_LINK and post.image_id and not (post.url and 'youtube.com' in post.url) %}
- {{ post.image.alt_text if post.image.alt_text else '' }}{{ post.image.alt_text if post.image.alt_text else post.title }}
{% endif %} @@ -87,12 +87,12 @@ {% endif %} {% elif post.type == POST_TYPE_IMAGE %}
- {{ post.image.alt_text if post.image.alt_text else '' }}{{ post.image.alt_text if post.image.alt_text else post.title }}
{% else %} {% if post.image_id and not (post.url and 'youtube.com' in post.url) %} - {{ post.image.alt_text if post.image.alt_text else '' }}{{ post.image.alt_text if post.image.alt_text else post.title }} {% endif %} {% endif %}