11---
22layout: table_wrappers
3+ include_language_switch_script: false
4+ back_to_top: true
35---
46
57<!DOCTYPE html>
68
79< html lang ="{{ site.lang | default: 'en-US' }} ">
810{% include head.html %}
911< body >
12+ <!-- Skip to main content link for accessibility -->
1013 < a class ="skip-to-main " href ="#main-content "> Skip to main content</ a >
14+
15+ <!-- Include icons and sidebar components -->
1116 {% include icons/icons.html %}
1217 {% include components/sidebar.html %}
18+
19+ <!-- Main content section -->
1320 < div class ="main " id ="top ">
1421 {% include components/header.html %}
22+
23+ <!-- Main content wrapper with breadcrumbs -->
1524 < div class ="main-content-wrap ">
1625 {% include components/breadcrumbs.html %}
26+
27+ <!-- Main content container -->
1728 < div id ="main-content " class ="main-content ">
1829 < main >
30+ <!-- Include anchor headings for heading links -->
1931 {% if site.heading_anchors != false %}
2032 {% 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%\"" %}
2133 {% else %}
2234 {{ content }}
2335 {% endif %}
2436
37+ <!-- Include children navigation if page has children and TOC is enabled -->
2538 {% if page.has_children == true and page.has_toc != false %}
2639 {% include components/children_nav.html %}
2740 {% endif %}
2841 </ main >
42+
43+ <!-- Include site footer -->
2944 {% include components/footer.html %}
3045 </ div >
3146 </ div >
47+
48+ <!-- Include search footer if search is enabled -->
3249 {% if site.search_enabled != false %}
3350 {% include components/search_footer.html %}
3451 {% endif %}
3552 </ div >
3653
54+ <!-- Include Mermaid diagrams if enabled -->
3755 {% if site.mermaid %}
3856 {% include components/mermaid.html %}
3957 {% endif %}
58+
59+ <!-- Includes Button switch to change from one Programming Language to another (Must be Enabled Or won't be possible) -->
60+ <!-- To Enable use " include_programming_language_switch_script: true " on .md pages -->
61+ {% if page.include_programming_language_switch_script %}
62+ < script src ="{{ '/assets/js/programmingLanguageSwitch.js' | relative_url }} " defer > </ script >
63+ {% endif %}
4064</ body >
4165</ html >
0 commit comments