Upgrade 1.13 to Hugo 0.57.2 (#16104)

* lower case url

Invoke site param as a string

Invoke site param as text

Remove leading dot

Invoke as a page variable

Tweak the page param invocation

lower case

Update Hugo version to 0.57.2

* Make it compatible with Hugo 0.55 (#13680)

This commit adds two backwards compatible changes to prepare for the next Hugo version, most notable:

* All the `File` methods on `Page` has been deprecated and will give a warning in the next Hugo version. Adjust this by changing `.Dir` to ´.File.Dir` and similar.
* Version the capture shortcode to use the old behaviour for markdown rendering of shortcode inner content.
This commit is contained in:
Zach Corleissen
2019-10-02 07:07:09 -07:00
committed by Kubernetes Prow Robot
parent bda7f1f517
commit 921adb4ff1
11 changed files with 20 additions and 13 deletions
+1 -1
View File
@@ -19,7 +19,7 @@
{{ end }}
{{ end }}
{{ if not .Params.noedit }}
<a href="https://github.com/kubernetes/website/edit/master/content/{{ site.Language.Lang }}/{{ .File.Path }}" class="button issue">{{ T "main_edit_this_page" }}</a>
{{ if .File }}<a href="https://github.com/kubernetes/website/edit/master/content/{{ site.Language.Lang }}/{{ .File.Path }}" class="button issue">{{ T "main_edit_this_page" }}</a>{{ end }}
{{ end }}
</div>
{{ if and (not .Params.showcommit) $.GitInfo }}