itsdrike.com/layouts/partials/content.html

40 lines
1.2 KiB
HTML
Raw Permalink Normal View History

2021-08-25 11:53:41 +02:00
<h1 class="display-4">{{ .Title }}</h1>
{{ if .Params.subtitle }}
2022-05-11 14:10:49 +02:00
<h5 class="my-3">{{ markdownify .Params.subtitle | emojify }}</h5>
2021-08-25 11:53:41 +02:00
{{ end }}
2021-08-24 19:49:26 +02:00
{{ if .IsPage }}
2022-05-11 14:10:49 +02:00
<p>{{ partial "content-details.html" . }}</p>
2022-04-12 12:35:34 +02:00
2022-05-11 14:10:49 +02:00
<!-- When directly viewing the article, if available, we also include revision date-->
{{ if and (not .Lastmod.IsZero) (not (.Lastmod.Equal .Date)) }}
<span class="pr-2" title='{{ .Lastmod.Format "January 2 2006" }}'>
<i class="pr-1 content-detail">Article revised in: {{ .Lastmod.Format "January 2 2006" }}</i>
</span>
{{ end }}
2021-08-24 19:49:26 +02:00
{{ end }}
2021-08-25 11:53:41 +02:00
{{ if .Content }}
2022-05-11 14:10:49 +02:00
<hr>
2021-08-25 11:53:41 +02:00
2022-05-11 14:10:49 +02:00
<div class="content mt-3">
2021-08-26 02:06:40 +02:00
{{ if .TableOfContents }}
2022-05-11 14:10:49 +02:00
<!-- Get the amount of headers using regex -->
2022-05-14 23:11:39 +02:00
{{ $headers := findRE "<h[1-6] ?.*?>(.|\n)*?</h[1-6]>" .Content }}
<!-- We only need to show a table of contents if we have over 4 headers -->
{{ if ge (len $headers) 4 }}
<div class="float-lg-end ml-lg-3 mb-3 p-3">
{{ .TableOfContents }}
</div>
{{ end }}
{{ end }}
2022-04-12 11:25:06 +02:00
<article>{{ .Content }}</article>
2022-04-12 11:25:06 +02:00
2023-12-10 01:07:40 +01:00
{{ if or (or .Params.Sources .Params.Changelog) .Params.Footnotes }}
<hr>
{{ partial "content-info.html" . }}
{{ end }}
2022-05-11 14:10:49 +02:00
</div>
2021-08-25 11:53:41 +02:00
{{ end }}