<ul class="a-list-basic ">
    <li class="list__item ">
        <a href="http://zdf.de" class="a-link ">
            Ein erstes Linklist-Item mit einem Link
        </a>

    </li>
    <li class="list__item ">
        <a href="http://zdf.de" class="a-link ">
            Auch das zweite Linklist-Item ist ein Link
        </a>

    </li>
</ul>
<ul class="a-list-basic {{viewtypes.specifier}}" {{{content.ariaAttrs}}}>
  {{#each partials.listitems as |listitem| }}
    <li class="list__item {{listitem.viewtypes.specifier}}">
      {{# switches.hasIcon }}
      {{render '@icon' partials.icon merge=true}}
      {{/switches.hasIcon}}
      {{#if switches.hasTextContent }}
        {{{content.text}}}
      {{else}}
        {{render (stringToPartial listitem.type) partials.item merge=true}}
      {{/if }}
      {{#if switches.hasSublist }}
        {{render '@list-basic' partials.subList merge=true}}
      {{/if}}
    </li>
  {{/each}}
</ul>
{
  "switches": {},
  "viewtypes": {
    "specifier": ""
  },
  "content": {},
  "partials": {
    "listitems": [
      {
        "switches": {
          "hasTextContent": false
        },
        "type": "link",
        "partials": {
          "item": {
            "content": {
              "text": "Ein erstes Linklist-Item mit einem Link"
            }
          }
        }
      },
      {
        "switches": {
          "hasTextContent": false
        },
        "type": "link",
        "partials": {
          "item": {
            "content": {
              "text": "Auch das zweite Linklist-Item ist ein Link"
            }
          }
        }
      }
    ]
  }
}

No notes defined.