leftypol_vichan/templates/post/image.html

46 lines
1.9 KiB
HTML
Raw Normal View History

<a href="
2015-08-11 01:09:26 +00:00
{% if post.file|extension == 'webm' or post.file|extension == 'mp4' %}
2023-07-14 05:11:59 +00:00
{{ config.root }}player.php?v={% if shadow %}{{ config.uri_shadow_img }}{% else %}{{ config.uri_img }}{% endif %}{{ post.file }}&amp;t={% if config.show_filename %}{{ post.filename|e('url') }}{% else %}{{ post.file }}{% endif %}&amp;loop=1
{% else %}
{% if shadow %}{{ config.uri_shadow_img }}{% else %}{{ config.uri_img }}{% endif %}{{ post.file }}
{% endif %}
"
target="_blank"
2015-08-11 01:09:26 +00:00
{% if post.thumb == 'file' or post.modifiers['is_file'] == '1' or post.filename|extension == 'webm' or post.file|extension == 'mp4' %}
class="file"
{% endif %}
>
2015-08-11 01:09:26 +00:00
{% if post.thumb|extension == 'webm' or post.thumb|extension == 'mp4' %}
<video autoplay class="post-image" src="{% if shadow %}{{ config.uri_shadow_img }}{% else %}{{ config.uri_thumb }}{% endif %}{{ post.thumb }}"
poster="
{{ 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 %}
"
style="width:{{ post.thumbwidth }}px;height:{{ post.thumbheight }}px"
>
</video>
{% else %}
2014-07-09 17:45:17 +00:00
<img class="post-image"
src="
{% if post.thumb == 'file' %}
{{ 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 %}
{% if shadow %}{{ config.uri_shadow_thumb }}{% else %}{{ config.uri_thumb }}{% endif %}{{ post.thumb }}
{% endif %}
"
2022-02-25 13:23:54 +00:00
style="width:{{ post.thumbwidth }}px;height:{{ post.thumbheight }}px" alt="{{ post.filename|e|bidi_cleanup }}"
/>
{% endif %}
</a>