Browse Source

Add extension mp4

pull/40/head
27chan 9 years ago
parent
commit
e6c1623a42
  1. 6
      templates/post/image.html

6
templates/post/image.html

@ -1,16 +1,16 @@
<a href=" <a href="
{% if post.file|extension == 'webm' %} {% if post.file|extension == 'webm' or post.file|extension == 'mp4' %}
{{ config.root }}player.php?v={{ config.uri_img }}{{ post.file }}&amp;t={{ post.filename|e('url') }}&amp;loop=1 {{ config.root }}player.php?v={{ config.uri_img }}{{ post.file }}&amp;t={{ post.filename|e('url') }}&amp;loop=1
{% else %} {% else %}
{{ config.uri_img }}{{ post.file }} {{ config.uri_img }}{{ post.file }}
{% endif %} {% endif %}
" "
target="_blank" target="_blank"
{% if post.thumb == 'file' or post.modifiers['is_file'] == '1' or post.filename|extension == 'webm' %} {% if post.thumb == 'file' or post.modifiers['is_file'] == '1' or post.filename|extension == 'webm' or post.file|extension == 'mp4' %}
class="file" class="file"
{% endif %} {% endif %}
> >
{% if post.thumb|extension == 'webm' %} {% if post.thumb|extension == 'webm' or post.thumb|extension == 'mp4' %}
<video autoplay class="post-image" src="{{ config.uri_thumb }}{{ post.thumb }}" <video autoplay class="post-image" src="{{ config.uri_thumb }}{{ post.thumb }}"
poster=" poster="
{{ config.root }} {{ config.root }}

Loading…
Cancel
Save