18 lines
449 B
HTML
18 lines
449 B
HTML
<header>
|
|
<h2>{{ title .Title }}</h2>
|
|
{{ partial "subtitle_string.html" . }}
|
|
|
|
{{ if .Params.date }}
|
|
<small title="{{ .Date.Format "January 2 2006" }}">{{ .Date.Format "2006-01-02" }}</small>
|
|
{{ end }}
|
|
</header>
|
|
{{ if .Content }}
|
|
<div class="box">
|
|
{{ if .Params.image }}
|
|
<span class="image featured main" data-image="{{ .Params.image }}"></span>
|
|
{{ end }}
|
|
{{ .Content }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ partial "tags.html" . }}
|