14 lines
No EOL
310 B
HTML
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 }} |