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

22 lines
374 B
HTML
Raw Normal View History

2021-03-24 02:11:03 +00:00
{{ define "title" }}
{{ .Title }} – {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<h1>{{ .Title }}</h1>
2021-03-24 15:44:10 +00:00
<p>{{ .Date }}</p>
<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 }}