This repository has been archived on 2024-09-01. You can view files and clone it, but cannot push or open issues or pull requests.
0x221e/layouts/_default/single.html
2023-03-28 01:50:36 -05:00

13 lines
197 B
HTML

{{ define "title"}}
{{ .Title }} | {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<div class="postWrapper">
<h1>{{ .Title }}</h1>
<div>
{{ .Content }}
</div>
</div>
{{ end }}