23 lines
498 B
HTML
23 lines
498 B
HTML
{{ define "main" }}
|
|
|
|
<h1 class="post-title">{{ .Title }}</h1>
|
|
|
|
{{ $dateFormat := $.Site.Params.dateFormat | default "Jan 2, 2006" }}
|
|
<strong>Publish date: </strong>{{ .PublishDate.Format $dateFormat }}
|
|
<br>
|
|
{{ with .Params.tags }}
|
|
<strong>Tags: </strong>
|
|
{{ range . }}
|
|
<a href="{{ "tags/" | relURL }}{{ . | urlize }}">{{ . }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ if ne .Params.toc false }}
|
|
{{ partial "toc.html" . }}
|
|
{{ end }}
|
|
|
|
{{ .Content }}
|
|
{{ template "_internal/disqus.html" . }}
|
|
|
|
{{ end }}
|