1
Fork 0
theorangeone.net-legacy/layouts/partials/content.html

19 lines
449 B
HTML
Raw Normal View History

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-09-15 09:09:06 +01:00
<small title="{{ .Date.Format "January 2 2006" }}">{{ .Date.Format "2006-01-02" }}</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 }}
2017-09-17 11:02:43 +01:00
{{ partial "tags.html" . }}