5.8 Single List Item View in a new window

Link lists are a structured way of displaying links to content with a common theme.This represents one example of such list

Twig: components/linked-list/list.twig

Markup
{% set item = item|default({
      "text": "How to safely manage",
      "url": "#",
      "svgUrl":"."
    }) %}

<li class="nsw-link-list__item mt-0" >
    {% if item.moreDetail %}
        <span class="nsw-link-list__link">
          <span class="information-text">{{item.text}} </span>
          <span class="nsw-link-list__information">{{item.moreDetail}}</span>
        </span>
    {% else %}
        <a class="nsw-link-list__link" href="{{item.url}}">{{item.text}}
          <img src="{{item.svgUrl}}/images/arrow-blue.svg" class="nsw-icon nsw-card__icon">
        </a>
    {% endif %}
</li>