2018-11-24 16:03:52 +00:00
|
|
|
{{- $filepath := .page.File.Path }}
|
2019-01-15 20:48:55 +00:00
|
|
|
{{- $editLink := printf "https://github.com/kubernetes/website/edit/master/content/%s/%s" .page.Language.Lang $filepath }}
|
2018-11-24 16:03:52 +00:00
|
|
|
<p>
|
|
|
|
<a href="{{ $editLink }}" id="editPageButton" target="_blank">
|
|
|
|
Edit This Page
|
|
|
|
</a>
|
|
|
|
</p>
|
2018-05-05 16:00:51 +00:00
|
|
|
{{ 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 }}
|
2018-11-24 16:03:52 +00:00
|
|
|
{{ end }}
|