mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-02-06 20:03:31 +08:00
787425b911
User can disable icon using `widgets.[home]page.iconVisible`, and change widget icon using `widgets.[home]page.icon`.
16 lines
571 B
HTML
16 lines
571 B
HTML
{{ if (.Context.Scratch.Get "TOCEnabled") }}
|
|
<section class="widget archives">
|
|
<div class="widget-icon">
|
|
{{ $icon := default "hash" .Params.icon }}
|
|
{{ $iconVisible := default true .Params.iconVisible }}
|
|
{{ if $iconVisible }}
|
|
{{ partial "helper/icon" $icon }}
|
|
{{ end }}
|
|
</div>
|
|
<h2 class="widget-title section-title">{{ T "article.tableOfContents" }}</h2>
|
|
|
|
<div class="widget--toc">
|
|
{{ .Context.TableOfContents }}
|
|
</div>
|
|
</section>
|
|
{{ end }} |