<nav id="mobile-nav" aria-label="Mobile navigation">
  <div class="sidebar-wrap">
    <%_ if (is_post()) { _%>
      <%_ if (post.toc === false) { _%>
        <%- partial_lang('sidebar/common-sidebar', { mobile: true }, { cache: !config.relative_link && theme.sidebar?.menu !== false, lang: page.lang }) %>
      <%_ } else if (post.toc !== true && theme.toc === false) { _%>
        <%- partial_lang('sidebar/common-sidebar', { mobile: true }, { cache: !config.relative_link && theme.sidebar?.menu !== false, lang: page.lang }) %>
      <%_ } else { _%>
        <div class="sidebar-toc-sidebar"><%- partial('sidebar/toc-sidebar') %></div>
        <div class="sidebar-common-sidebar hidden"><%- partial_lang('sidebar/common-sidebar', { mobile: true }, { cache: !config.relative_link && theme.sidebar?.menu !== false, lang: page.lang }) %></div>
      <%_ } _%>
    <%_ } else { _%>
      <%- partial_lang('sidebar/common-sidebar', { mobile: true }, { cache: !config.relative_link && theme.sidebar?.menu !== false, lang: page.lang }) %>
    <%_ } _%>
  </div>
  <%_ if (is_post()) { _%>
    <%_ if (post.toc === false) { _%>
    <%_ } else if (post.toc !== true && theme.toc === false) { _%>
    <%_ } else { _%>
      <div class="sidebar-btn-wrapper">
        <div class="sidebar-toc-btn current"></div>
        <div class="sidebar-common-btn"></div>
      </div>
    <%_ } _%>
  <%_ } _%>
</nav>
