expand.html 336 B

1234567891011
  1. <div class="expand">
  2. <button type="button" class="expand__button" aria-label="Expand Button">
  3. <span class="expand-icon expand-icon__right">
  4. {{ partial "svgs/arrow-right.svg" (dict "width" 24 "height" 24) }}
  5. </span>
  6. {{.Get 0}}
  7. </button>
  8. <div class="expand__content">
  9. {{.Inner | markdownify}}
  10. </div>
  11. </div>