leftypol_vichan/templates/post/image_identification.html

15 lines
643 B
HTML
Raw Normal View History

2014-05-15 15:05:13 +00:00
{% if file.thumb != 'file' and config.image_identification %}
,
<span class='image_id'>
2014-05-06 17:15:59 +00:00
{% if config.image_identification_imgops %}
2014-05-15 15:05:13 +00:00
<a href="http://imgops.com/{{ config.domain }}{{ config.uri_img }}{{ file.file }}">io</a>
2014-05-06 17:15:59 +00:00
{% endif %}
2014-05-15 15:05:13 +00:00
{% if config.image_identification_exif and file.file|extension == 'jpg' %}
<a href="http://regex.info/exif.cgi?url={{ config.domain }}{{ config.uri_img }}{{ file.file }}">e</a>
{% endif %}
2014-05-06 17:15:59 +00:00
{% if config.image_identification_google %}
2014-05-15 15:05:13 +00:00
<a href="http://www.google.com/searchbyimage?image_url={{ config.domain }}{{ config.uri_img }}{{ file.file }}">g</a>
2014-05-06 17:15:59 +00:00
{% endif %}
</span>
{% endif %}