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

56 lines
1.3 KiB
HTML
Raw Normal View History

2023-10-21 16:05:44 +09:00
{{- define "main" }}
<article class="post-single">
2023-10-29 11:04:01 +09:00
2023-10-21 16:05:44 +09:00
<header class="post-header">
<h1 class="post-title">
{{ .Title }}
</h1>
{{- if .Description }}
<div class="post-description">
{{ .Description }}
</div>
{{- end }}
2023-10-29 11:04:01 +09:00
2023-10-21 16:05:44 +09:00
<div class="post-meta">
2023-10-29 11:19:00 +09:00
{{- if not .Date.IsZero -}}
2023-10-29 11:21:16 +09:00
<span title='{{ .Date }}'>
{{.Date | time.Format (default "January 2, 2006" site.Params.DateFormat) }}
</span>
2023-10-29 11:19:00 +09:00
{{- end }}
2023-10-21 16:05:44 +09:00
</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>
2023-10-29 15:29:16 +09:00
<nav class="pag-back">
<a href="#" onclick="window.history.back()">
2023-10-29 15:29:40 +09:00
< Back
2023-10-29 15:27:41 +09:00
</a>
</nav>
2023-10-21 16:05:44 +09:00
<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 */}}