LoveIt/layouts/_default/single.html

10 lines
288 B
HTML
Raw Normal View History

{{ define "title" }}{{ .Title }} | {{ .Site.Title }}{{ end }}
2019-08-04 15:53:35 +02:00
2019-02-03 12:30:44 +01:00
{{ define "content" }}
2019-08-24 13:32:41 +02:00
<div class="post-warp single">
<h1 class="post-title animated pulse faster">{{ .Title }}</h1>
2019-08-04 15:53:35 +02:00
<div class="post-content">
{{ .Content }}
</div>
2019-02-03 12:30:44 +01:00
</div>
{{end }}