{% if include.id %} {% assign feature_row = page[include.id] %} {% else %} {% assign feature_row = page.feature_row %} {% endif %}
{% for f in feature_row %} {% if f.url contains "://" %} {% capture f_url %}{{ f.url }}{% endcapture %} {% else %} {% capture f_url %}{{ f.url | relative_url }}{% endcapture %} {% endif %}
{% if f.image_path %}
{% if f.alt %}{{ f.alt }}{% endif %} {% if f.image_caption %} {{ f.image_caption | markdownify | remove: "

" | remove: "

" }}
{% endif %}
{% endif %}
{% if f.title %}

{{ f.title }}

{% endif %} {% if f.excerpt %}
{{ f.excerpt | markdownify }}
{% endif %} {% if f.url %}

{{ f.btn_label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}

{% endif %}
{% endfor %}