mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-04 20:30:44 +00:00
28 lines
982 B
HTML
28 lines
982 B
HTML
{{- $showAnchor := (and (default true .Page.Params.geekblogAnchor) (default true .Page.Site.Params.geekblogAnchor)) -}}
|
|
|
|
|
|
<!-- prettier-ignore-start -->
|
|
{{- if $showAnchor -}}
|
|
<div class="flex align-center gblog-post__anchorwrap">
|
|
<h{{ .Level }} id="{{ .Anchor | safeURL }}" {{- with .Attributes.class }}
|
|
class="{{ . }}"
|
|
{{- end }}
|
|
>
|
|
{{ .Text | safeHTML }}
|
|
</h{{ .Level }}>
|
|
<a data-clipboard-text="{{ .Page.Permalink }}#{{ .Anchor | safeURL }}" class="gblog-post__anchor clip flex align-center" aria-label="Anchor {{ .Text | safeHTML }}" href="#{{ .Anchor | safeURL }}">
|
|
<svg class="gblog-icon gblog_link"><use xlink:href="#gblog_link"></use></svg>
|
|
</a>
|
|
</div>
|
|
{{- else -}}
|
|
<div class="gblog-post__anchorwrap">
|
|
<h{{ .Level }} id="{{ .Anchor | safeURL }}" {{- with .Attributes.class }}
|
|
class="{{ . }}"
|
|
{{- end }}
|
|
>
|
|
{{ .Text | safeHTML }}
|
|
</h{{ .Level }}>
|
|
</div>
|
|
{{- end -}}
|
|
<!-- prettier-ignore-end -->
|