This commit is contained in:
Marcin Mierzejewski 2020-04-30 22:02:40 +02:00
commit 9943fc2d55
45 changed files with 669 additions and 0 deletions

14
layouts/posts/single.html Normal file
View file

@ -0,0 +1,14 @@
{{ 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 }}