mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-05 21:00:50 +00:00
Robert Kaussow
42968b6a30
BREAKING CHANGE: The icon gdoc_telescope was removed. If you are using this icon you have to replace it. Build-in icons are prefixed with gdoc_ now. If you use built-in icons in e.g. menus you have to rename these references!
19 lines
769 B
HTML
19 lines
769 B
HTML
{{- $showAnchor := (and (default true .Page.Params.GeekblogAnchor) (default true .Page.Site.Params.GeekblogAnchor)) -}}
|
|
|
|
{{- if $showAnchor -}}
|
|
<div class="gblog-post__anchorwrap">
|
|
<h{{ .Level }} id="{{ .Anchor | safeURL }}">
|
|
{{ .Text | safeHTML }}
|
|
<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="icon gblog_link"><use xlink:href="#gblog_link"></use></svg>
|
|
</a>
|
|
</h{{ .Level }}>
|
|
</div>
|
|
{{- else -}}
|
|
<div class="gblog-post__anchorwrap">
|
|
<h{{ .Level }} id="{{ .Anchor | safeURL }}">
|
|
{{ .Text | safeHTML }}
|
|
</h{{ .Level }}>
|
|
</div>
|
|
{{- end -}}
|