12 lines
407 B
HTML
12 lines
407 B
HTML
<p><a href="{{ printf "%s#%s" ("docs/editdocs" | relURL) .page.Path | safeURL }}" id="editPageButton">Edit This Page</a></p>
|
|
{{ if not .page.Params.notitle }}
|
|
<h1>{{ .page.Title }}</h1>
|
|
{{ end }}
|
|
{{ with .page.Params.content_template }}
|
|
{{ partial . $ }}
|
|
{{ else }}
|
|
{{ if and (not .page.Params.toc_hide) (not (.page.HasShortcode "toc")) }}
|
|
{{ .page.TableOfContents }}
|
|
{{ end }}
|
|
{{ .page.Content }}
|
|
{{ end }} |