hermit-V2/layouts/posts/single.html

77 lines
3.2 KiB
HTML
Raw Normal View History

{{ define "head" }}
2019-01-03 05:25:14 -05:00
{{ if .Params.featuredImg -}}
<style>.bg-img {background-image: url('{{.Params.featuredImg}}');}</style>
{{- else if .Params.images -}}
{{- range first 1 .Params.images -}}
2019-01-03 05:25:14 -05:00
<style>.bg-img {background-image: url('{{. | absURL}}');}</style>
{{- end -}}
{{- end -}}
{{ end }}
2018-10-23 01:15:50 -04:00
{{ define "header" }}
{{ partial "header.html" . }}
{{ end }}
{{ define "main" }}
{{- if (or .Params.images .Params.featuredImg) }}
<div class="bg-img"></div>
{{- end }}
2018-10-23 01:15:50 -04:00
<main class="site-main section-inner animated fadeIn faster">
2023-10-28 12:55:23 -04:00
{{- if and (not (eq .Site.Params.legacyLayout nil)) (.Site.Params.legacyLayout) -}}
2018-10-23 01:15:50 -04:00
<article class="thin">
<header class="post-header">
<div class="post-meta"><span>{{ .Date.Format .Site.Params.dateform }}</span></div>
<h1>{{ .Title }}</h1>
</header>
2023-10-28 12:55:23 -04:00
<div class="content">
2023-11-12 11:37:52 -05:00
{{ .Content | replaceRE "(<h[1-6] id=\"([^\"]+)\".+)(</h[1-6]+>)" `${1}<a href="#${2}" class="anchor" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3"></path><line x1="8" y1="12" x2="16" y2="12"></line></svg></a>${3}` | safeHTML }}
2023-08-06 09:16:12 -04:00
</div>
2023-10-28 12:55:23 -04:00
{{- if .Site.Params.relatedPosts }}
{{- partial "related-posts.html" . -}}
{{- end }}
<hr class="post-end">
2023-10-29 02:35:27 -04:00
<footer class="post-info">{{- partial "posts_single_info.html" . -}}</footer>
2023-10-28 12:55:23 -04:00
</article>
{{- else -}}
<article class="thin">
<header class="post-header">
<div class="post-meta"><span>{{ .Date.Format .Site.Params.dateform }}</span></div>
<h1>{{ .Title }}</h1>
</header>
<div class="post-info">{{- partial "posts_single_info.html" . -}}</div>
2023-08-06 09:16:12 -04:00
<hr class="post-end">
<div class="content">
2023-11-12 11:37:52 -05:00
{{ .Content | replaceRE "(<h[1-6] id=\"([^\"]+)\".+)(</h[1-6]+>)" `${1}<a href="#${2}" class="anchor" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3"></path><line x1="8" y1="12" x2="16" y2="12"></line></svg></a>${3}` | safeHTML }}
2023-08-06 09:16:12 -04:00
</div>
{{- if .Site.Params.relatedPosts }}
{{- partial "related-posts.html" . -}}
{{- end }}
2018-10-23 01:15:50 -04:00
</article>
2023-10-28 12:55:23 -04:00
{{- end -}}
2018-12-24 09:17:22 -05:00
{{- if .Params.toc }}
<aside id="toc">
2018-12-24 09:56:07 -05:00
<div class="toc-title">{{ i18n "tableOfContents" }}</div>
2018-12-24 09:17:22 -05:00
{{ .TableOfContents }}
</aside>
{{- end }}
2018-10-23 01:15:50 -04:00
<div class="post-nav thin">
{{- with .NextInSection }}
<a class="next-post" href="{{ .Permalink }}">
2023-11-12 10:26:10 -05:00
<span class="post-nav-label">{{- partial "svg.html" (dict "context" . "name" "next") -}}&nbsp;{{ i18n "newer" }}</span><br><span>{{ .Title }}</span>
2018-10-23 01:15:50 -04:00
</a>
{{- end }}
{{- with .PrevInSection }}
<a class="prev-post" href="{{ .Permalink }}">
2023-11-12 10:26:10 -05:00
<span class="post-nav-label">{{ i18n "older" }}&nbsp;{{- partial "svg.html" (dict "context" . "name" "previous") -}}</span><br><span>{{ .Title }}</span>
2018-10-23 01:15:50 -04:00
</a>
{{- end }}
</div>
<div id="comments" class="thin">
{{- partial "comments.html" . -}}
</div>
2018-10-23 01:15:50 -04:00
</main>
{{ end }}
{{ define "footer" }}
{{ partialCached "footer.html" . }}
2023-08-06 09:16:12 -04:00
{{ end }}