123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {% if links -%}
- {%- if heading -%}
- {%- if heading.level -%}
- <{{ heading.level }}{{ heading.attributes }}>{{ heading.text }}</{{ heading.level }}>
- {%- else -%}
- <h2{{ heading.attributes }}>{{ heading.text }}</h2>
- {%- endif -%}
- {%- endif -%}
- <ul{{ attributes }}>
- {%- for item in links -%}
- <li{{ item.attributes }}>
- {%- if item.link -%}
- <a href="{{ item.link.url }}">{{ item.text|slice(0,2) }}</a>
- {%- elseif item.text_attributes -%}
- <span{{ item.text_attributes }}>{{ item.text }}</span>
- {%- else -%}
- {{ item.text }}
- {%- endif -%}
- </li>
- {%- endfor -%}
- </ul>
- {%- endif %}
|