Files
site/themes/minimo/layouts/partials/sidebar/toggler.html
2021-09-06 13:02:12 -04:00

19 lines
550 B
HTML

{{- $sidebarEnabled := .Site.Params.sidebar.enable -}}
{{- $sidebarWidgets := .Site.Params.widgets.sidebar -}}
{{- if ( and $sidebarEnabled $sidebarWidgets ) -}}
<a class='screen-reader-text' href='#content'>{{ i18n "skipToContent" }}</a>
<button id='sidebar-toggler' class='sidebar-toggler' aria-controls='sidebar'>
<span class='screen-reader-text'>{{ i18n "toggleSidebar" }}</span>
<span class='open'>
{{- partial "svg/icon" "menu" -}}
</span>
<span class='close'>
{{- partial "svg/icon" "x" -}}
</span>
</button>
{{- end -}}