forked from varia/varia.website
using thumbnails for everything except gifs
This commit is contained in:
parent
0a66ae863b
commit
5ba0249003
@ -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">
|
||||
|
@ -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…
Reference in New Issue
Block a user