<style>
  body > .notes {
    margin: var(--space);
  }
</style>

<div class='bordered notes'>

  <input id=notes-toggle-checkbox type=checkbox hidden checked>

  <label class=notes-toggle for=notes-toggle-checkbox>
    <svg class=chevron-right><use href=#chevron-right></svg>
    <svg class=chevron-down><use href=#chevron-down></svg>
    <span class=label-text>Show / Hide Notes</span>
  </label>

  <header>
    <h3 class=notes__title>Notes</h3>
  </header>

  <ul class=notes__notes-container>
    <li class=note-item>
      <button class=note-button aria-label='Show note' type=button>
        <svg><use href=#sticky-note></svg>
      </button>
      {{> @note }}
    </li>
    <li class=note-item>
      <button class=note-button aria-label='Show note' type=button>
        <svg><use href=#sticky-note></svg>
      </button>
      {{> @note }}
    </li>
    <li class=note-item>
      <button class=note-button aria-label='Show note' type=button>
        <svg><use href=#sticky-note></svg>
      </button>
      {{> @note }}
    </li>
  </ul>

</div>

<svg style='display: none;'>

  <symbol id=chevron-down viewBox="0 0 24 24">
    <path d="M1.51,6.079a1.492,1.492,0,0,1,1.06.44l7.673,7.672a2.5,2.5,0,0,0,3.536,0L21.44,6.529A1.5,1.5,0,1,1,23.561,8.65L15.9,16.312a5.505,5.505,0,0,1-7.778,0L.449,8.64A1.5,1.5,0,0,1,1.51,6.079Z" />
  </symbol>

  <symbol id=chevron-right viewBox="0 0 24 24">
    <path d="M6.079,22.5a1.5,1.5,0,0,1,.44-1.06l7.672-7.672a2.5,2.5,0,0,0,0-3.536L6.529,2.565A1.5,1.5,0,0,1,8.65.444l7.662,7.661a5.506,5.506,0,0,1,0,7.779L8.64,23.556A1.5,1.5,0,0,1,6.079,22.5Z" />
  </symbol>

  <symbol id=sticky-note viewBox="0 0 512 512">
    <style>
      path {
        fill: currentColor;
      }
    </style>
    <path d="m512 334.667v-314.667c0-11.046-8.954-20-20-20h-472c-11.046 0-20 8.954-20 20v472c0 11.046 8.954 20 20 20h314.667c5.375 0 10.489-2.203 14.145-5.86l157.328-157.329c3.652-3.65 5.86-8.747 5.86-14.144zm-472-294.667h432v274.667h-137.333c-11.046 0-20 8.954-20 20v137.333h-274.667zm403.716 314.667-89.049 89.049v-89.049zm-325.716-177.334c0-11.046 8.954-20 20-20h236c11.046 0 20 8.954 20 20s-8.954 20-20 20h-236c-11.046 0-20-8.954-20-20zm20 98.667c-11.046 0-20-8.954-20-20s8.954-20 20-20h236c11.046 0 20 8.954 20 20s-8.954 20-20 20z" />
  </symbol>

</svg>