2020-12-06 16:20:47 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-12-07 14:40:34 +00:00
|
|
|
|
2020-12-09 00:23:56 +00:00
|
|
|
|
|
|
|
<h1 class="listname">{{ .Title }}</h1>
|
|
|
|
|
2020-12-07 14:40:34 +00:00
|
|
|
|
2020-12-06 16:20:47 +00:00
|
|
|
<article class="single">
|
2020-12-07 14:40:34 +00:00
|
|
|
|
|
|
|
<div class="single summary">
|
|
|
|
{{.Summary}}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{{ partial "metadata.html" . }}
|
|
|
|
<br><br>
|
2020-12-06 16:20:47 +00:00
|
|
|
<div>
|
2020-12-07 14:40:34 +00:00
|
|
|
<div class="image single"><img src="{{.Params.image}}" alt=""></div>
|
2020-12-06 16:20:47 +00:00
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</article>
|
2020-12-09 00:23:56 +00:00
|
|
|
{{ partial "aside.html" . }}
|
2020-12-07 14:40:34 +00:00
|
|
|
{{ end }}
|