blog/themes/oldtheme/layouts/_default/single.html

56 lines
1.3 KiB
HTML

{{- define "main" }}
<article class="post-single">
<header class="post-header">
<h1 class="post-title">
{{ .Title }}
</h1>
{{- if .Description }}
<div class="post-description">
{{ .Description }}
</div>
{{- end }}
<div class="post-meta">
{{- if not .Date.IsZero -}}
<span title='{{ .Date }}'>
{{.Date | time.Format (default "January 2, 2006" site.Params.DateFormat) }}
</span>
{{- end }}
</div>
</header>
{{- if .Content }}
<div class="post-content">
{{- if not (.Param "disableAnchoredHeadings") }}
{{- partial "anchored_headings.html" .Content -}}
{{- else }}{{ .Content }}{{ end }}
</div>
{{- end }}
<footer class="post-footer">
{{- $tags := .Language.Params.Taxonomies.tag | default "tags" }}
<ul class="post-tags">
{{- range ($.GetTerms $tags) }}
<li><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></li>
{{- end }}
</ul>
<nav class="pag-back">
<a href="#" onclick="window.history.back()">
< Back
</a>
</nav>
<br/>
{{- if (and (and site.Params.ShowShareButtons (ne .Params.disableShare true)) false) }}
{{- partial "share_icons.html" . -}}
{{- end }}
</footer>
{{- if (.Param "comments") }}
{{- partial "comments.html" . }}
{{- end }}
</article>
{{- end }}{{/* end main */}}