Lists: Ordered List

Een List group is een flexibele en krachtige component om simpele en complexe lijsten van elementen te tonen, met custom content. Gebaseerd op de Bootstrap “List group” component

<ol>
    <li>
        Cras justo odio
    </li>
    <li>
        Dapibus ac facilisis in
    </li>
    <li>
        Morbi leo risus
    </li>
    <li>
        Porta ac consectetur ac
    </li>
    <li>
        <p>Vestibulum at eros</p>
    </li>
</ol>
    {%- for item in items -%}
  1. {{ item.text }}{% if item.paragraph %}

    {{ item.paragraph }}

    {% endif %}
  2. {% endfor -%}
items:
  - text: Cras justo odio
  - text: Dapibus ac facilisis in
  - text: Morbi leo risus
  - text: Porta ac consectetur ac
  - paragraph: Vestibulum at eros