2017-05-23 13:44:26 +02:00
|
|
|
{% if settings.settings.light_mode %}
|
|
|
|
{% set pathstatic = ".." %}
|
|
|
|
{% else %}
|
|
|
|
{% set pathstatic = "." %}
|
|
|
|
{% endif %}
|
2016-05-26 17:04:57 +02:00
|
|
|
<section class="paragraph">
|
|
|
|
{% if section.title %}
|
2017-05-23 13:44:26 +02:00
|
|
|
<h3>{{ section.title }}</h3>
|
2016-05-26 17:04:57 +02:00
|
|
|
{% endif %}
|
2017-05-23 13:44:26 +02:00
|
|
|
<p>
|
|
|
|
{% if section.image %}
|
|
|
|
{% set image = Image(section.image) %}
|
|
|
|
{% if section.image.float %}
|
|
|
|
{% set float = section.image.float %}
|
|
|
|
{% else %}
|
|
|
|
{% set float = 'left' %}
|
|
|
|
{% endif %}
|
|
|
|
{{ image.copy() }}
|
|
|
|
<span class="{{ float }}">
|
|
|
|
<img src="{{ pathstatic }}/{{ image.generate_thumbnail("x150") }}" alt=""/>
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
|
|
|
{{ section.text }}
|
|
|
|
</p>
|
|
|
|
<div class="clear"></div>
|
2016-05-26 17:04:57 +02:00
|
|
|
</section>
|