Add optional modifier: <tinyboard is_file> to tell Tinyboard that even though an image might have a thumbnail, it could still be a non-image upload

This commit is contained in:
Michael Foster 2013-08-18 18:17:12 +10:00
parent fa4dec36db
commit dcf97d6b5b
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@
) )
</span> </span>
</p> </p>
<a href="{{ config.uri_img }}{{ post.file }}" target="_blank"{% if post.thumb == 'file' %} class="file"{% endif %}> <a href="{{ config.uri_img }}{{ post.file }}" target="_blank"{% if post.thumb == 'file' or post.modifiers['is_file'] == '1' %} class="file"{% endif %}>
<img class="post-image" src=" <img class="post-image" src="
{% if post.thumb == 'file' %} {% if post.thumb == 'file' %}
{{ config.root }} {{ config.root }}

View File

@ -41,7 +41,7 @@
{% endif %} {% endif %}
) )
</span></p> </span></p>
<a href="{{ config.uri_img }}{{ post.file }}" target="_blank"{% if post.thumb == 'file' %} class="file"{% endif %}> <a href="{{ config.uri_img }}{{ post.file }}" target="_blank"{% if post.thumb == 'file' or post.modifiers['is_file'] == '1' %} class="file"{% endif %}>
<img class="post-image" src=" <img class="post-image" src="
{% if post.thumb == 'file' %} {% if post.thumb == 'file' %}
{{ config.root }} {{ config.root }}