Browse Source

using thumbnails for everything except gifs

master
rra 6 years ago
parent
commit
5ba0249003
  1. 9
      themes/varia/templates/article.html
  2. 11
      themes/varia/templates/index.html

9
themes/varia/templates/article.html

@ -31,7 +31,14 @@
<div class="article-info">
<div class="featured-image">
{% if article.featured_image %}
<img src="{{ article.featured_image }}">
{% set thumb_size ='/thumb'%}
<a href="{{ article.featured_image }}">
{% if article.featured_image.endswith('.gif') %}
{% set thumb_size =''%}
{% endif %}
<img src="{{ article.featured_image | replace('images','images'+thumb_size) }}">
</a>
{% endif %}
</div>
<div class="event-details">

11
themes/varia/templates/index.html

@ -21,11 +21,13 @@
{% if article.category %}
{% if article.event_start %}
{% set event_status = '' %}
{% set thumb_size = '/thumb' %}
{% if article.event_start < article.date.now() %}
{% set event_status = ' past' %}
{% endif %}
{% if article.event_start >= article.date.now() %}
{% set event_status = ' current' %}
{% set thumb_size = '/thumb2x' %}
{% endif %}
{% endif %}
@ -36,17 +38,22 @@
{% if article.event_start %}
<div class="event-details">
{{ article.event_start | strftime('%d %B %Y') }}
{% set event_status = '' %}
<!-- {% set event_status = '' %} -->
</div>
{% endif %}
<div class="featured-image {{event_status}}">
{% if article.featured_image %}
<a href="{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">
<img src="{{ article.featured_image }}">
{% if article.featured_image.endswith('.gif') %}
{% set thumb_size =''%}
{% endif %}
<img src="{{ article.featured_image | replace('images','images'+thumb_size) }}">
</a>
{% endif %}
</div>
</div>
<div class="summary {{ article.category }}">{{ article.summary }}
<span>
{% if DEFAULT_LANG == 'en' %}

Loading…
Cancel
Save