mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-07-23 02:18:57 +00:00
21 lines
700 B
Twig
Executable file
21 lines
700 B
Twig
Executable file
<section class="search-row">
|
|
|
|
{% set title = page.title %}
|
|
{% set thumb = page.media[page.header.primaryImage] ?: page.media.images|first %}
|
|
|
|
{% if thumb %}
|
|
<div class="search-image">
|
|
<a href="{{ page.url }}">{{ thumb.loading('lazy').html(title,title)|raw }}</a>
|
|
</div>
|
|
{% endif %}
|
|
<div class="search-item">
|
|
<div class="search-title">
|
|
<h3><a href="{{ page.url }}">{{ title }}</a></h3>
|
|
</div>
|
|
<div class="search-details">
|
|
<span class="search-date">{{ page.date|date(config.system.pages.dateformat.short) }}</span>
|
|
</div>
|
|
{{ page.summary|striptags|truncate(300, true)|raw }}
|
|
</div>
|
|
|
|
</section>
|