27 lines
756 B
HTML
27 lines
756 B
HTML
{{ partial "page_start.html" . }}
|
|
<div id="page-wrapper">
|
|
<section id="main" class="container">
|
|
<header>
|
|
<h2>{{ title .Title }}</h2>
|
|
</header>
|
|
{{ if .Content }}
|
|
<div class="box">
|
|
{{ if .Params.image }}
|
|
<span class="image featured"><img src="{{ .Params.image }}" alt="{{ .Title }} image" /></span>
|
|
{{ end }}
|
|
{{ .Content }}
|
|
</div>
|
|
{{ end }}
|
|
<div class="row">
|
|
{{ $parent := . }}
|
|
{{ range where .Pages.ByTitle "Params.show_in_nav" "!=" "false" }}
|
|
{{ if $parent.Params.show_images }}
|
|
{{ partial "box_image.html" . }}
|
|
{{ else }}
|
|
{{ partial "box.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
{{ partial "page_end.html" . }}
|