1
0
Fork 0
self-hosting.riou.xyz/layouts/posts/single.html
Julien Riou 8e018ba84d
Initial commit
Signed-off-by: Julien Riou <julien@riou.xyz>
2024-12-22 08:17:34 +01:00

14 lines
314 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .PublishDate.Format "January 2, 2006" }}
{{ with .Params.linkedin }}
// <a href="{{ . }}">Linkedin</a>
{{ end }}
{{ with .Params.twitter }}
// <a href="{{ . }}">Twitter</a>
{{ end }}
<br/><br/>
{{ .Content }}
{{ template "_internal/disqus.html" . }}
{{ end }}