28 lines
931 B
HTML
28 lines
931 B
HTML
{{ $JSON := $.Site.Data.wcag }}
|
|
{{ $included := split (.Get "include") ", " }}
|
|
{{ $descriptions := .Get "descriptions" }}
|
|
<ul class="wcag {{ if $descriptions }}with-desc{{ end }}">
|
|
{{ range $JSON }}
|
|
{{ if in $included .ref_id }}
|
|
<li>
|
|
<strong><a href="{{ .url }}">
|
|
<svg class="wcag-icon" height="67.763" width="127.1" viewBox="0 0 127.09899 67.763" aria-hidden="true"><use xlink:href="#w3c"></use></svg>
|
|
{{ .ref_id }} {{ .title }}</a> (level {{ .level }}){{ if $descriptions }}:{{ end }}
|
|
</strong>
|
|
{{ if $descriptions }}
|
|
{{ .description }}
|
|
{{ if .special_cases }}
|
|
<ul>
|
|
{{ range .special_cases }}
|
|
<li><strong>{{ .title }}:</strong>
|
|
{{ .description }}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
{{ end }}
|
|
</li>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|