2017-04-21 09:21:12 +01:00
|
|
|
{{ partial "page_start.html" . }}
|
|
|
|
<div id="page-wrapper">
|
|
|
|
<section id="main" class="container">
|
2017-04-21 13:46:53 +01:00
|
|
|
<header>
|
|
|
|
<h2>{{ title .Title }}</h2>
|
|
|
|
{{ if .Params.subtitle }}
|
|
|
|
<p>{{ .Params.subtitle }}</p>
|
|
|
|
{{ end }}
|
|
|
|
</header>
|
|
|
|
<div class="box">
|
2017-05-06 18:34:10 +01:00
|
|
|
{{ if .Params.image }}
|
|
|
|
<span class="image featured"><img src="{{ .Params.image }}" alt="{{ .Title }} image" /></span>
|
|
|
|
{{ end }}
|
2017-04-21 13:46:53 +01:00
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
</section>
|
2017-04-21 09:21:12 +01:00
|
|
|
</div>
|
|
|
|
{{ partial "page_end.html" . }}
|