mirror of
https://github.com/rancher/rancher-docs.git
synced 2026-04-14 18:35:37 +00:00
23 lines
420 B
HTML
23 lines
420 B
HTML
{{ define "hero" }}
|
|
<section class="hero">
|
|
<div class="wrapper">
|
|
<div class="row center-xs">
|
|
<div class="col-md-8 p-b-lg">
|
|
{{ with .Params.pageHeader }}
|
|
<h1>{{ . }}</h1>
|
|
{{end}}
|
|
{{ with .Params.description }}
|
|
<p class="p-t-sm">{{ . }}</p>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<div>
|
|
{{ .Content }}
|
|
</div>
|
|
{{ end }}
|