18 lines
483 B
HTML
18 lines
483 B
HTML
{{ partial "page_start.html" . }}
|
|
<div id="page-wrapper">
|
|
<section id="main" class="container">
|
|
<header>
|
|
<h2>{{ title .Title }}</h2>
|
|
{{ if .Params.subtitle }}
|
|
<p>{{ .Params.subtitle }}</p>
|
|
{{ end }}
|
|
</header>
|
|
<div class="box">
|
|
{{ if .Params.image }}
|
|
<span class="image featured"><img src="{{ .Params.image }}" alt="{{ .Title }} image" /></span>
|
|
{{ end }}
|
|
{{ .Content }}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
{{ partial "page_end.html" . }}
|