1
0
Fork 0
self-hosting.riou.xyz/layouts/posts/single.html

15 lines
314 B
HTML
Raw Normal View History

{{ 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 }}