|
|
@ -19,24 +19,26 @@ |
|
|
|
<article class="hentry {{article.category}}"> |
|
|
|
{% endif %} |
|
|
|
<div class="article-info"> |
|
|
|
<span class="entry-title"><a href="{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></span> |
|
|
|
<div class="event-details"> |
|
|
|
<div class="entry-title"> |
|
|
|
<a href="{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a> |
|
|
|
</div> |
|
|
|
<div class="featured-image {{past}}"> |
|
|
|
{% if article.featured_image %} |
|
|
|
<a href="{{ article.url }}"><img src="{{ article.featured_image }}"></a> |
|
|
|
{% endif %} |
|
|
|
</div> |
|
|
|
{% if article.event_start %} |
|
|
|
<div class="event-details"> |
|
|
|
{{ article.event_start }} |
|
|
|
{% set past = '' %} |
|
|
|
{% if article.event_start < article.date.now() %} |
|
|
|
{% set past = ' past-event' %} |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{% endif %} |
|
|
|
</div> |
|
|
|
<div class="featured-image {{past}}"> |
|
|
|
{% if article.featured_image %} |
|
|
|
<img src="{{ article.featured_image }}"> |
|
|
|
{% endif %} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="summary">{{ article.summary }} |
|
|
|
<div class="summary {{ article.category }}">{{ article.summary }} |
|
|
|
<span> |
|
|
|
<a href="{{ article.url }}"> |
|
|
|
{% if DEFAULT_LANG == 'en' %} |
|
|
@ -47,6 +49,17 @@ |
|
|
|
</a> |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
<!-- <div class="summary {{ article.category }}">{{ article.summary }} |
|
|
|
<span> |
|
|
|
<a href="{{ article.url }}"> |
|
|
|
{% if DEFAULT_LANG == 'en' %} |
|
|
|
read more |
|
|
|
{% elif DEFAULT_LANG == 'nl' %} |
|
|
|
lees meer |
|
|
|
{% endif %} |
|
|
|
</a> |
|
|
|
</span> |
|
|
|
</div> --> |
|
|
|
<div class="separator"><hr></div> |
|
|
|
<div class="post-info"> |
|
|
|
{% if article.category %} |
|
|
|