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:19:26 +09:00
|
|
|
{{- printf "<span title='%s'>%s</span>" (.Date) (.Date | time.Format (default "January 2, 2006" site.Params.DateFormat))) }}
|
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>
|
|
|
|
{{- if (.Param "ShowPostNavLinks") }}
|
|
|
|
{{- partial "post_nav_links.html" . }}
|
|
|
|
{{- end }}
|
|
|
|
<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 */}}
|