fallback to attachment image when video doesn't work

This commit is contained in:
ccd0 2013-11-27 02:17:25 -08:00
parent 1690392132
commit 827ca37730
2 changed files with 41 additions and 22 deletions

View File

@ -97,20 +97,29 @@
{% else %} {% else %}
{{ config.uri_img }}{{ post.file }} {{ config.uri_img }}{{ post.file }}
{% endif %}" target="_blank"{% if post.thumb == 'file' or post.modifiers['is_file'] == '1' or post.filename|extension == 'webm' %} class="file"{% endif %}> {% endif %}" target="_blank"{% if post.thumb == 'file' or post.modifiers['is_file'] == '1' or post.filename|extension == 'webm' %} class="file"{% endif %}>
<{% if post.thumb|extension == 'webm' %}video preload{% else %}img{% endif %} class="post-image" src=" {% if post.thumb|extension == 'webm' %}
{% if post.thumb == 'file' %} <video autoplay class="post-image" src="{{ config.uri_thumb }}{{ post.thumb }}" poster="
{{ config.root }} {{ config.root }}
{% if config.file_icons[post.filename|extension] %} {% if config.file_icons[post.filename|extension] %}
{{ config.file_thumb|sprintf(config.file_icons[post.filename|extension]) }} {{ config.file_thumb|sprintf(config.file_icons[post.filename|extension]) }}
{% else %} {% else %}
{{ config.file_thumb|sprintf(config.file_icons.default) }} {{ config.file_thumb|sprintf(config.file_icons.default) }}
{% endif %} {% endif %}" style="width:{{ post.thumbwidth }}px;height:{{ post.thumbheight }}px"></video>
{% elseif post.thumb == 'spoiler' %} {% else %}
{{ config.root }}{{ config.spoiler_image }} <img class="post-image" src="
{% else %} {% if post.thumb == 'file' %}
{{ config.uri_thumb }}{{ post.thumb }} {{ config.root }}
{% endif %}" style="width:{{ post.thumbwidth }}px;height:{{ post.thumbheight }}px" {% if config.file_icons[post.filename|extension] %}
{% if post.thumb|extension == 'webm' %}></video>{% else %}alt="" />{% endif %} {{ config.file_thumb|sprintf(config.file_icons[post.filename|extension]) }}
{% else %}
{{ config.file_thumb|sprintf(config.file_icons.default) }}
{% endif %}
{% elseif post.thumb == 'spoiler' %}
{{ config.root }}{{ config.spoiler_image }}
{% else %}
{{ config.uri_thumb }}{{ post.thumb }}
{% endif %}" style="width:{{ post.thumbwidth }}px;height:{{ post.thumbheight }}px" alt="" />
{% endif %}
</a> </a>
{% endif %} {% endif %}
{{ post.postControls }} {{ post.postControls }}

View File

@ -47,20 +47,30 @@
{% else %} {% else %}
{{ config.uri_img }}{{ post.file }} {{ config.uri_img }}{{ post.file }}
{% endif %}" target="_blank"{% if post.thumb == 'file' or post.modifiers['is_file'] == '1' or post.filename|extension == 'webm' %} class="file"{% endif %}> {% endif %}" target="_blank"{% if post.thumb == 'file' or post.modifiers['is_file'] == '1' or post.filename|extension == 'webm' %} class="file"{% endif %}>
<{% if post.thumb|extension == 'webm' %}video preload{% else %}img{% endif %} class="post-image" src=" {% if post.thumb|extension == 'webm' %}
{% if post.thumb == 'file' %} <video autoplay class="post-image" src="{{ config.uri_thumb }}{{ post.thumb }}" poster="
{{ config.root }} {{ config.root }}
{% if config.file_icons[post.filename|extension] %} {% if config.file_icons[post.filename|extension] %}
{{ config.file_thumb|sprintf(config.file_icons[post.filename|extension]) }} {{ config.file_thumb|sprintf(config.file_icons[post.filename|extension]) }}
{% else %} {% else %}
{{ config.file_thumb|sprintf(config.file_icons.default) }} {{ config.file_thumb|sprintf(config.file_icons.default) }}
{% endif %} {% endif %}" style="width:{{ post.thumbwidth }}px;height:{{ post.thumbheight }}px"></video>
{% elseif post.thumb == 'spoiler' %}
{{ config.root }}{{ config.spoiler_image }}
{% else %} {% else %}
{{ config.uri_thumb }}{{ post.thumb }} <img class="post-image" src="
{% endif %}" style="width:{{ post.thumbwidth }}px;height:{{ post.thumbheight }}px" {% if post.thumb == 'file' %}
{% if post.thumb|extension == 'webm' %}></video>{% else %}alt="" />{% endif %}</a> {{ config.root }}
{% if config.file_icons[post.filename|extension] %}
{{ config.file_thumb|sprintf(config.file_icons[post.filename|extension]) }}
{% else %}
{{ config.file_thumb|sprintf(config.file_icons.default) }}
{% endif %}
{% elseif post.thumb == 'spoiler' %}
{{ config.root }}{{ config.spoiler_image }}
{% else %}
{{ config.uri_thumb }}{{ post.thumb }}
{% endif %}" style="width:{{ post.thumbwidth }}px;height:{{ post.thumbheight }}px" alt="" />
{% endif %}
</a>
{% endif %} {% endif %}
<div class="post op"><p class="intro"{% if not index %} id="{{ post.id }}"{% endif %}> <div class="post op"><p class="intro"{% if not index %} id="{{ post.id }}"{% endif %}>
<input type="checkbox" class="delete" name="delete_{{ post.id }}" id="delete_{{ post.id }}" /> <input type="checkbox" class="delete" name="delete_{{ post.id }}" id="delete_{{ post.id }}" />