You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
676 B
HTML
24 lines
676 B
HTML
{{ $class := .Get 0 | default (.Get "class") }}
|
|
{{ $title := .Get "title" }}
|
|
{{ $url := .Get "url" }}
|
|
|
|
{{ $target := partial "paige/func-target.html" (dict "page" .Page "url" $url) }}
|
|
|
|
{{ if not $class }}
|
|
{{ errorf "layouts/shortcodes/paige/icon.html: no class" }}
|
|
{{ end }}
|
|
|
|
{{/* The markup below cannot be indented due to nested shortcodes within Markdown. */}}
|
|
|
|
<span class="paige-icon">
|
|
{{- with $url -}}
|
|
<a href="{{ . }}" {{ with $target }} target="{{ . }}" {{ end }}>
|
|
{{- end -}}
|
|
|
|
<i class="{{ $class }}" {{ with $title }} title="{{ . }}" {{ end }}>{{ with $title }}<span class="visually-hidden">{{ . }}</span>{{ end }}</i>
|
|
|
|
{{- if $url -}}
|
|
</a>
|
|
{{- end -}}
|
|
</span>
|