site/themes/hugo-theme-console/layouts/posts/single.html
2024-01-21 22:56:08 +01:00

14 lines
No EOL
310 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .PublishDate.Format "Jan. 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 }}