blog/themes/gruvbox/layouts/_default/single.html

23 lines
465 B
HTML
Raw Normal View History

2021-03-24 20:30:42 +00:00
{{ define "title" }}{{ .Title }}{{ end }}
2021-03-24 02:11:03 +00:00
{{ define "main" }}
2021-03-24 20:30:42 +00:00
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
2021-03-24 02:11:03 +00:00
2021-03-24 20:30:42 +00:00
<time>{{ .Date.Format "Mon, 02 Jan 2006 15:04 MST" }}</time>
<p>tags:</p>
{{ partial "tags.html" . }}
2021-03-24 15:44:10 +00:00
<hr>
2021-03-24 02:11:03 +00:00
{{ .Content }}
<script src="https://utteranc.es/client.js"
repo="benharri/tilde"
issue-term="title"
crossorigin="anonymous"
theme="github-dark"
async>
</script>
{{ end }}