1
0
Fork 0
ejv2.cc/themes/risotto/layouts/_default/single.html

45 lines
1 KiB
HTML
Raw Normal View History

2024-08-01 06:21:40 +01:00
{{ define "main" }}
<header class="content__header">
<h1>{{ .Title | markdownify }}</h1>
</header>
<div class="content__body">
{{ .Content }}
</div>
<footer class="content__footer"></footer>
{{ end }}
{{define "aside" }}
{{ if .Params.description }}<p>{{ .Params.description }}</p>{{ end }}
{{ if .Params.date }}
2024-08-01 06:21:40 +01:00
<p>
{{ if .Date }}<strong>First Published</strong> {{ .Date.Format "2006-01-02" }}{{ end }}
2024-08-01 06:21:40 +01:00
</p>
{{ end }}
{{if .Params.categories }}
<p>
<strong>Categories: [</strong>
{{ range .Params.categories }}
<a href="/categories/{{ . }}">{{ . }}</a>
{{ end }}
<strong>]</strong>
</p>
{{ end }}
{{if .Params.tags }}
<p>
<strong>Tags: [</strong>
{{ range .Params.tags }}
<a href="/tags/{{ . }}">{{ . }}</a>
{{ end }}
<strong>]</strong>
</p>
{{ end }}
2024-08-01 06:21:40 +01:00
{{ if and (.Params.toc) (.TableOfContents) }}
<hr>
On this page:
{{ .TableOfContents }}
{{ end }}
{{ end }}