site/themes/hugo-theme-console/layouts/posts/single.html

15 lines
311 B
HTML
Raw Normal View History

2024-01-21 21:56:08 +00:00
{{ 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" . }}
2024-02-08 18:27:45 +00:00
{{ end }}