mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-21 19:09:29 +00:00
14 lines
429 B
HTML
14 lines
429 B
HTML
<div class="flex align-center justify-between">
|
|
<label for="menu-control">
|
|
<img src="{{ "svg/menu.svg" | relURL }}" class="book-icon" alt="Menu" />
|
|
</label>
|
|
|
|
<h3>{{ partial "docs/title" . }}</h3>
|
|
|
|
<label for="toc-control">
|
|
{{ if default true (default .Site.Params.BookToC .Params.BookToC) }}
|
|
<img src="{{ "svg/toc.svg" | relURL }}" class="book-icon" alt="Table of Contents" />
|
|
{{ end }}
|
|
</label>
|
|
</div>
|