Add toc to main-article partial

This commit is contained in:
Sam 2024-08-07 00:39:11 +01:00
parent 284b5469ce
commit cf40c32443
1 changed files with 20 additions and 13 deletions

View File

@ -1,3 +1,4 @@
<div class="article-container">
<article class="main-article"> <article class="main-article">
<header> <header>
<h1>{{ .Title }}</h1> <h1>{{ .Title }}</h1>
@ -5,11 +6,17 @@
{{ with .Params.author }} {{ with .Params.author }}
<strong><p class="author-name">{{ .name }}</p></strong> <strong><p class="author-name">{{ .name }}</p></strong>
<p class="author-name">on</p> <p class="author-name">on</p>
{{ end }} {{ end }} {{ if isset .Params "date" }}
{{ if isset .Params "date" }}
<time>{{ .Date.Format "January 2, 2006" }}</time> <time>{{ .Date.Format "January 2, 2006" }}</time>
{{ end }} {{ end }}
</div> </div>
</header> </header>
<div id="tocWrapper">
<h4>Table of Contents</h4>
{{ if .Params.toc }}
<aside>{{.TableOfContents}}</aside>
{{ end }}
</div>
{{ .Content }} {{ .Content }}
</article> </article>
</div>