|
| 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 %} {% if page.nav_enabled == true %} {% include |
| 7 | + sidebar.html %} {% elsif layout.nav_enabled == true and page.nav_enabled == |
| 8 | + nil %} {% include sidebar.html %} {% elsif site.nav_enabled != false and |
| 9 | + layout.nav_enabled == nil and page.nav_enabled == nil %} {% include |
| 10 | + sidebar.html %} {% endif %} |
| 11 | + |
| 12 | + <div class="main" id="top"> |
| 13 | + {% include components/header.html %} |
| 14 | + |
| 15 | + <div class="main-content-wrap"> |
| 16 | + {% include components/breadcrumbs.html %} |
| 17 | + <div id="main-content" class="main-content"> |
| 18 | + <main> |
| 19 | + {% if site.heading_anchors != false %} {% capture raw_anchor_svg %} |
| 20 | + {% include components/anchor_icon.html %} {% endcapture %} {% assign |
| 21 | + anchor_svg = raw_anchor_svg | strip_newlines %} {% include |
| 22 | + vendor/anchor_headings.html html=content beforeHeading="true" |
| 23 | + anchorBody=anchor_svg anchorClass="anchor-heading" |
| 24 | + anchorAttrs="aria-labelledby='%html_id%'" %} {% else %} {{ content |
| 25 | + }} {% endif %} {% if page.has_toc != false %} {% include |
| 26 | + components/children_nav.html %} {% endif %} |
| 27 | + </main> |
| 28 | + </div> |
| 29 | + </div> |
| 30 | + |
| 31 | + <footer class="site-footer"> |
| 32 | + This site uses |
| 33 | + <a href="https://github.com/just-the-docs/just-the-docs" |
| 34 | + >Just the Docs</a |
| 35 | + >, a documentation theme for Jekyll. |
| 36 | + </footer> |
| 37 | + |
| 38 | + {% if site.search_enabled != false %} {% include |
| 39 | + components/search_footer.html %} {% endif %} |
| 40 | + </div> |
| 41 | + |
| 42 | + {% if site.mermaid %} {% include components/mermaid.html %} {% endif %} |
| 43 | + </body> |
| 44 | +</html> |
0 commit comments