14 lines
503 B
HTML
14 lines
503 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" data-proofer-ignore>
|
|
Edit This Page
|
|
</a>
|
|
</p>
|
|
{{ if not .page.Params.notitle }}
|
|
<h1>{{ .page.Title }}</h1>
|
|
{{ $desc := .page.Description }}
|
|
{{ with .page.Params.description }}<div class="lead">{{ $desc | markdownify }}</div>{{ end }}
|
|
{{ end }}
|
|
{{ .page.Content }}
|