{% for feature in site.features %}
{% if feature.title != blank %}
{{ feature.title }}
{% endif %} {% if feature.subtitle != blank %}
{{ feature.subtitle }}
{% endif %}

{{ feature.content | markdownify }}

{% for link in feature.links %} {{ link[0] }} {% endfor %}
{% if limit > 0 and forloop.index >= limit %} {% break %} {% endif %} {% endfor %}