mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-05 04:40:43 +00:00
Robert Kaussow
3ccc8918bb
BREAKING CHANGE: The class `.icon` was renamed to `.gblog-icon` to avoid conflicts.
22 lines
842 B
HTML
22 lines
842 B
HTML
{{- $showAnchor := (and (default true .Page.Params.GeekblogAnchor) (default true .Page.Site.Params.GeekblogAnchor)) -}}
|
|
|
|
|
|
<!-- prettier-ignore-start -->
|
|
{{- if $showAnchor -}}
|
|
<div class="gblog-post__anchorwrap flex align-center">
|
|
<h{{ .Level }} id="{{ .Anchor | safeURL }}">
|
|
{{ .Text | safeHTML }}
|
|
</h{{ .Level }}>
|
|
<a data-clipboard-text="{{ .Page.Permalink }}#{{ .Anchor | safeURL }}" class="gblog-post__anchor gblog-post__anchor--right clip" 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 }}">
|
|
{{ .Text | safeHTML }}
|
|
</h{{ .Level }}>
|
|
</div>
|
|
{{- end -}}
|
|
<!-- prettier-ignore-end -->
|