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.
15 lines
550 B
HTML
15 lines
550 B
HTML
{{ $page := . }}
|
|
|
|
{{ $class := $page.Param "paige.main.content.class" | default "mw-100 paige-content" }}
|
|
{{ $content := "" }}
|
|
|
|
{{ if $page.Param "paige.main.content.hide" | not }}
|
|
{{ $content = cond ($page.Scratch.Get "paige_list_show_content" | not) ($page.Content | replaceRE `(<h[1-6] id="([^"]+)".+)(</h[1-6]+>)` `${1}<a aria-label="Link to this section" class="paige-header-link" href="#${2}">#</a>${3}` | safeHTML) $page.Content }}
|
|
{{ end }}
|
|
|
|
{{ with $content }}
|
|
<section class="{{ $class }}">
|
|
{{ . }}
|
|
</section>
|
|
{{ end }}
|