hugo-theme-hax0r/layouts/_default/single.html

36 lines
867 B
HTML

{{ define "main" }}
<div class="boxed">
<article class="post">
<header class="post-header">
<h1 class ="post-title">{{ .Title }}</h1>
{{- if ne .Type "page" }}
<div class="post-meta compact">
<div>
<span>Published:</span>
{{ .PublishDate.Format "Jan 2, 2006" }}
</div>
<div>
<span>Approx. time:</span>
{{ .ReadingTime }} min read
</div>
{{- with .Params.tags }}
<div><span>Tags:</span>
{{- range . -}}
{{ with $.Site.GetPage (printf "/%s/%s" "tags" . ) }}
<a class="tag" href="{{ .Permalink }}">{{ .Title }}</a>
{{- end }}
{{- end }}
</div>
{{- end }}
</div>
{{- end }}
</header>
<hr/>
<div>
{{ .Content }}
</div>
</article>
</div>
{{ end }}