LoveIt/layouts/page/single.html

11 lines
312 B
HTML
Raw Normal View History

2019-08-04 15:53:35 +02:00
{{ define "title" }}{{ .Title }} - {{ .Site.Title }}{{ end }}
2019-02-03 12:30:44 +01:00
{{ define "content" }}
2019-08-04 15:53:35 +02:00
<div class="post-warp archive">
<h2 class="post-title" style="text-align:right;padding-bottom:2em">{{ .Title }}</h2>
<div class="post-content">
{{ .Content }}
</div>
2019-02-03 12:30:44 +01:00
</div>
2019-08-04 15:53:35 +02:00
{{end }}