hugo-theme-zzo/layouts/partials/body/toc.html

13 lines
436 B
HTML
Raw Normal View History

2020-01-07 07:30:51 +00:00
{{ if .Params.enableTocContent }}
<div class="expand">
<button type="button" class="expand__button" aria-label="Expand Button">
<span class="expand-icon expand-icon__right">
{{ partial "svgs/arrow/keyboard-arrow-right.svg" (dict "width" 24 "height" 24) }}
</span>
{{ i18n "toc-label" }}
2020-01-07 07:30:51 +00:00
</button>
2020-01-25 12:23:07 +00:00
<div class="expand__content expand__content--toc">
2020-01-07 07:30:51 +00:00
{{ .TableOfContents }}
</div>
</div>
{{ end }}