hugo-theme-zzo/layouts/shortcodes/expand.html

11 lines
355 B
HTML
Raw Normal View History

2019-11-04 13:09:44 +00:00
<div class="expand">
2020-01-07 07:30:51 +00:00
<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>
{{ .Get 0 }}
2020-01-07 07:30:51 +00:00
</button>
<div class="expand__content">
{{ .Inner | markdownify }}
2020-01-07 07:30:51 +00:00
</div>
2019-11-04 13:09:44 +00:00
</div>