|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="{{ site.lang | default: 'en-US' }}"> |
| 3 | + {% include head.html %} |
| 4 | + <body> |
| 5 | + <a class="skip-to-main" href="#main-content">Skip to main content</a> |
| 6 | + {% include icons/icons.html %} |
| 7 | + |
| 8 | + {% if page.nav_enabled == true %} |
| 9 | + {% include components/sidebar.html %} |
| 10 | + {% elsif layout.nav_enabled == true and page.nav_enabled == nil %} |
| 11 | + {% include components/sidebar.html %} |
| 12 | + {% elsif site.nav_enabled != false and layout.nav_enabled == nil and page.nav_enabled == nil %} |
| 13 | + {% include components/sidebar.html %} |
| 14 | + {% endif %} |
| 15 | + |
| 16 | + <div class="main" id="top"> |
| 17 | + {% include components/header.html %} |
| 18 | + |
| 19 | + <div class="main-content-wrap"> |
| 20 | + {% include components/breadcrumbs.html %} |
| 21 | + <div id="main-content" class="main-content"> |
| 22 | + <main> |
| 23 | + {% if site.heading_anchors != false %} |
| 24 | + {% include vendor/anchor_headings.html html=content beforeHeading="true" anchorBody="<svg viewBox=\"0 0 16 16\" aria-hidden=\"true\"><use xlink:href=\"#svg-link\"></use></svg>" anchorClass="anchor-heading" anchorAttrs="aria-labelledby=\"%html_id%\"" %} |
| 25 | + {% else %} |
| 26 | + {{ content }} |
| 27 | + {% endif %} |
| 28 | + |
| 29 | + {% if page.has_toc != false %} |
| 30 | + {% include components/children_nav.html %} |
| 31 | + {% endif %} |
| 32 | + </main> |
| 33 | + </div> |
| 34 | + </div> |
| 35 | + |
| 36 | + <footer class="site-footer"> |
| 37 | + This site uses <a href="https://github.com/just-the-docs/just-the-docs">Just the Docs</a>, a documentation theme for Jekyll. |
| 38 | + </footer> |
| 39 | + |
| 40 | + {% if site.search_enabled != false %} |
| 41 | + {% include components/search_footer.html %} |
| 42 | + {% endif %} |
| 43 | + </div> |
| 44 | + |
| 45 | + {% if site.mermaid %} |
| 46 | + {% include components/mermaid.html %} |
| 47 | + {% endif %} |
| 48 | + </body> |
| 49 | +</html> |
0 commit comments