mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-29 14:48:55 +00:00
Improved the definition of title, subtitle and image variables. Added the featured image, subtitle and content
45 lines
1.4 KiB
Twig
45 lines
1.4 KiB
Twig
{% set image = page.media[page.header.primaryImage] ?: page.media.images|first %}
|
|
{% set title = page.title|raw %}
|
|
{% set subtitle = page.header.subtitle|raw %}
|
|
{% set columns = page.header.layout == 'standard' ? 'col-4 col-6-medium col-12-small' : 'col-6 col-12-small' %}
|
|
|
|
<section id="features">
|
|
<header>
|
|
<h2>{{ title }}</h2>
|
|
{% if subtitle %}
|
|
<p>{{ subtitle }}</p>
|
|
{% endif %}
|
|
</header>
|
|
|
|
{% if image %}
|
|
{{ image.cropZoom(1038,437).loading('lazy').html(title, title, 'image featured')|raw }}
|
|
{% endif %}
|
|
|
|
{{ page.content|raw }}
|
|
|
|
<div class="row gtr-uniform">
|
|
{% for feature in page.header.features %}
|
|
<div class="{{columns}}">
|
|
<article class="box">
|
|
{% if feature.image %}
|
|
<span class="image fit"><img src="{{page.media[feature.image].url}}" alt="{{feature.title}}"/></span>
|
|
{% endif %}
|
|
<header>
|
|
{% if feature.title %}
|
|
<h3>{{feature.title}}</h3>
|
|
{% endif %}
|
|
{% if feature.text %}
|
|
<p>{{feature.text|raw}}</p>
|
|
{% endif %}
|
|
{% if feature.buttonurl %}
|
|
<p>
|
|
<a href="{{feature.buttonurl}}" class="button fit" target={% if feature.buttonurl_target %} "_blank" {% endif%}>{{feature.buttontext}}</a>
|
|
</p>
|
|
{% endif %}
|
|
</header>
|
|
</article>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|
|
<br>
|