1
Fork 0
theorangeone.net-legacy/layouts/_default/single.html
2017-05-06 18:34:10 +01:00

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" . }}