12 lines
360 B
HTML
12 lines
360 B
HTML
{{ define "main" }}
|
|
<div class="td-content">
|
|
{{ partial "docs/content-page" (dict "ctx" . "page" .) }}
|
|
</div>
|
|
{{ end }}
|
|
{{ define "hero-more" }}
|
|
{{ if .IsHome }}
|
|
{{ with site.GetPage "section" "docs/tutorials/kubernetes-basics" }}
|
|
<a href="{{ .RelPermalink }}" id="quickstartButton" class="button">{{ .LinkTitle }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }} |