19 lines
488 B
HTML
19 lines
488 B
HTML
{{ define "main" }}
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
<div>
|
|
{{ .Date | time.Format ":date_medium" }}
|
|
</div>
|
|
|
|
{{ if and (isset .Params "image") .Params.image }}
|
|
{{ $image := .Page.Resources.GetMatch .Params.image }}
|
|
{{ with $image }}
|
|
{{ $thumb := .Resize "1000x" }}
|
|
{{ printf `<img src="%s" alt="%s" class="img-responsive gallery-image">` $thumb.RelPermalink .Title | safeHTML }}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ .Content }}
|
|
{{ partial "comments.html" . }}
|
|
{{ end }}
|