2019-03-28 19:40:33 -04:00
|
|
|
{% if include.id %}
|
|
|
|
{% assign feature_row = page[include.id] %}
|
|
|
|
{% else %}
|
|
|
|
{% assign feature_row = page.feature_row %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="feature__wrapper">
|
|
|
|
|
|
|
|
{% for f in feature_row %}
|
|
|
|
<div class="feature__item{% if include.type %}--{{ include.type }}{% endif %}">
|
|
|
|
<div class="archive__item">
|
|
|
|
{% if f.image_path %}
|
|
|
|
<div class="archive__item-teaser">
|
2023-02-10 04:44:06 -05:00
|
|
|
<img src="{{ f.image_path | relative_url }}"
|
|
|
|
alt="{% if f.alt %}{{ f.alt }}{% endif %}">
|
2019-03-28 19:40:33 -04:00
|
|
|
{% if f.image_caption %}
|
|
|
|
<span class="archive__item-caption">{{ f.image_caption | markdownify | remove: "<p>" | remove: "</p>" }}</span>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="archive__item-body">
|
|
|
|
{% if f.title %}
|
|
|
|
<h2 class="archive__item-title">{{ f.title }}</h2>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if f.excerpt %}
|
|
|
|
<div class="archive__item-excerpt">
|
|
|
|
{{ f.excerpt | markdownify }}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if f.url %}
|
2023-02-10 04:44:06 -05:00
|
|
|
<p><a href="{{ f.url | relative_url }}" class="btn {{ f.btn_class }}">{{ f.btn_label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}</a></p>
|
2019-03-28 19:40:33 -04:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
|
2023-02-10 04:44:06 -05:00
|
|
|
</div>
|