19 lines
542 B
HTML
19 lines
542 B
HTML
{{- $filepath := .page.File.Path }}
|
|
{{- $editLink := printf "https://github.com/kubernetes/website/edit/master/content/%s/%s" .page.Language.Lang $filepath }}
|
|
<p>
|
|
<a href="{{ $editLink }}" id="editPageButton" target="_blank">
|
|
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 }}
|