20 lines
523 B
HTML
20 lines
523 B
HTML
{{ define "main" }}
|
|
<div class="longform-layout">
|
|
<nav class="toc-nav" id="toc-nav">
|
|
<h3>Contents</h3>
|
|
<ul id="toc-list"></ul>
|
|
</nav>
|
|
<article class="longform-content" id="longform-content">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ range .Site.Data.manual_sections.sections }}
|
|
<section id="{{ .id }}" data-toc-title="{{ .title }}">
|
|
{{ with $.Site.GetPage .page }}
|
|
{{ .Content }}
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|
|
</article>
|
|
</div>
|
|
<script src="/js/toc.js"></script>
|
|
{{ end }}
|