2025-04-05 16:12:54 +02:00
|
|
|
{{- define "header" -}}
|
|
|
|
<header>
|
|
|
|
<a title="{{ .Site.Title }}'s Bibliotheke" href="/library/BROWSE_LIBRARY.html" class="bibliotheke" target="_blank">
|
|
|
|
<img src="/images/bibliotheke.svg" />
|
|
|
|
</a>
|
|
|
|
<nav aria-label="breadcrumb">
|
|
|
|
<ol class="breadcrumbs">
|
|
|
|
<li><a href="#">Home</a></li>
|
|
|
|
<li><a href="#">Section</a></li>
|
|
|
|
<li aria-current="page">Subsection</li>
|
|
|
|
</ol>
|
|
|
|
</nav>
|
|
|
|
<a href="#" class="header-icon" aria-label="Open new window">
|
|
|
|
<img src="icon.png" alt="" />
|
|
|
|
</a>
|
|
|
|
</header>
|
|
|
|
{{- end -}}
|
|
|
|
{{- define "main" -}}{{- partial "single-page-graph.html" . -}}
|
|
|
|
<main class="content">
|
|
|
|
<div class="page-menu">
|
|
|
|
<aside class="toc">
|
|
|
|
{{ if ne (trim .TableOfContents "\n") "<nav id=\"TableOfContents\"></nav>" }}
|
|
|
|
{{ .TableOfContents }}
|
|
|
|
{{ end }}
|
|
|
|
</aside>
|
|
|
|
<aside class="metagraph">metagraph</aside>
|
|
|
|
</div>
|
|
|
|
<h2>{{ .Title }}</h2>
|
|
|
|
<p>{{ .Content }}</p>
|
|
|
|
</main>
|
2025-03-30 11:49:25 +02:00
|
|
|
{{ end }}
|