2017-06-25 11:31:05 +01:00
|
|
|
<header>
|
|
|
|
<h2>{{ title .Title }}</h2>
|
2017-08-05 22:17:15 +01:00
|
|
|
{{ partial "subtitle_string.html" . }}
|
|
|
|
|
2017-07-27 18:10:38 +01:00
|
|
|
{{ if .Params.date }}
|
2017-08-05 22:17:15 +01:00
|
|
|
<small>{{ .Date.Format "January 2 2006" }}</small>
|
2017-07-27 18:10:38 +01:00
|
|
|
{{ end }}
|
2017-06-25 11:31:05 +01:00
|
|
|
</header>
|
|
|
|
{{ if .Content }}
|
|
|
|
<div class="box">
|
|
|
|
{{ if .Params.image }}
|
|
|
|
<span class="image featured main" data-image="{{ .Params.image }}"></span>
|
|
|
|
{{ end }}
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|