22 lines
793 B
HTML
Executable File
22 lines
793 B
HTML
Executable File
<header class="flex padding">
|
|
<h1>{{ .Title }}</h1>
|
|
</header>
|
|
{{- $resources := .Resources -}}
|
|
{{- with .Content -}}
|
|
<div class="content row">
|
|
<div class="col-sm-12">
|
|
{{- range $.Resources.ByType "image" -}}
|
|
{{- if .Params.featured -}}
|
|
{{- $orig := . -}}
|
|
{{ partial "figure.html" (dict "ctx" . "image" . "lightbox" true "class" "featured left" "showTitle" true "showDescription" true)}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{ . }}
|
|
</div>
|
|
</div>
|
|
{{- end -}}
|
|
<footer class="single-footer padding">
|
|
<p>
|
|
<i class="fa fa-calendar"></i> <time datetime='{{ .Lastmod.Format "2006-01-02T15:04-07:00" }}'>{{ .Lastmod.Format "02.01.2006 15:04" }}</time>
|
|
</p>
|
|
</footer> |