|
| 1 | +--- |
| 2 | +layout: table_wrappers |
| 3 | +--- |
| 4 | + |
| 5 | +<!DOCTYPE html> |
| 6 | + |
| 7 | +<html lang="{{ site.lang | default: 'en-US' }}"> |
| 8 | +{% include head.html %} |
| 9 | +<body> |
| 10 | + <svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> |
| 11 | + <symbol id="svg-link" viewBox="0 0 24 24"> |
| 12 | + <title>Link</title> |
| 13 | + <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-link"> |
| 14 | + <path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path> |
| 15 | + </svg> |
| 16 | + </symbol> |
| 17 | + <symbol id="svg-search" viewBox="0 0 24 24"> |
| 18 | + <title>Search</title> |
| 19 | + <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"> |
| 20 | + <circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line> |
| 21 | + </svg> |
| 22 | + </symbol> |
| 23 | + <symbol id="svg-menu" viewBox="0 0 24 24"> |
| 24 | + <title>Menu</title> |
| 25 | + <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu"> |
| 26 | + <line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line> |
| 27 | + </svg> |
| 28 | + </symbol> |
| 29 | + <symbol id="svg-arrow-right" viewBox="0 0 24 24"> |
| 30 | + <title>Expand</title> |
| 31 | + <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"> |
| 32 | + <polyline points="9 18 15 12 9 6"></polyline> |
| 33 | + </svg> |
| 34 | + </symbol> |
| 35 | + <symbol id="svg-doc" viewBox="0 0 24 24"> |
| 36 | + <title>Document</title> |
| 37 | + <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file"> |
| 38 | + <path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path><polyline points="13 2 13 9 20 9"></polyline> |
| 39 | + </svg> |
| 40 | + </symbol> |
| 41 | + </svg> |
| 42 | + |
| 43 | + <div class="side-bar"> |
| 44 | + <div class="site-header"> |
| 45 | + <a href="{{ '/' | absolute_url }}" class="site-title lh-tight">{% include title.html %}</a> |
| 46 | + <a href="#" id="menu-button" class="site-button"> |
| 47 | + <svg viewBox="0 0 24 24" class="icon"><use xlink:href="#svg-menu"></use></svg> |
| 48 | + </a> |
| 49 | + </div> |
| 50 | + <nav role="navigation" aria-label="Main" id="site-nav" class="site-nav"> |
| 51 | + {% include nav.html %} |
| 52 | + </nav> |
| 53 | + <footer class="site-footer"> |
| 54 | + <p class="text-small text-grey-dk-000 mb-4">This site uses <a href="https://github.com/just-the-docs/just-the-docs">Just the Docs</a>, a documentation theme for Jekyll.</p> |
| 55 | + </footer> |
| 56 | + </div> |
| 57 | + <div class="main" id="top"> |
| 58 | + <div id="main-header" class="main-header"> |
| 59 | + {% if site.search_enabled != false %} |
| 60 | + <div class="search"> |
| 61 | + <div class="search-input-wrap"> |
| 62 | + <input type="text" id="search-input" class="search-input" tabindex="0" placeholder="Search {{ site.title }}" aria-label="Search {{ site.title }}" autocomplete="off"> |
| 63 | + <label for="search-input" class="search-label"><svg viewBox="0 0 24 24" class="search-icon"><use xlink:href="#svg-search"></use></svg></label> |
| 64 | + </div> |
| 65 | + <div id="search-results" class="search-results"></div> |
| 66 | + </div> |
| 67 | + {% endif %} |
| 68 | + {% include header_custom.html %} |
| 69 | + {% if site.aux_links %} |
| 70 | + <nav aria-label="Auxiliary" class="aux-nav"> |
| 71 | + <ul class="aux-nav-list"> |
| 72 | + {% for link in site.aux_links %} |
| 73 | + <li class="aux-nav-list-item"> |
| 74 | + <a href="{{ link.last }}" class="site-button" |
| 75 | + {% if site.aux_links_new_tab %} |
| 76 | + target="_blank" rel="noopener noreferrer" |
| 77 | + {% endif %} |
| 78 | + > |
| 79 | + {{ link.first }} |
| 80 | + </a> |
| 81 | + </li> |
| 82 | + {% endfor %} |
| 83 | + </ul> |
| 84 | + </nav> |
| 85 | + {% endif %} |
| 86 | + </div> |
| 87 | + <div id="main-content-wrap" class="main-content-wrap"> |
| 88 | + {% unless page.url == "/" %} |
| 89 | + {% if page.parent %} |
| 90 | + <nav aria-label="Breadcrumb" class="breadcrumb-nav"> |
| 91 | + <ol class="breadcrumb-nav-list"> |
| 92 | + {% if page.grand_parent %} |
| 93 | + <li class="breadcrumb-nav-list-item"><a href="{{ first_level_url }}">{{ page.grand_parent }}</a></li> |
| 94 | + <li class="breadcrumb-nav-list-item"><a href="{{ second_level_url }}">{{ page.parent }}</a></li> |
| 95 | + {% else %} |
| 96 | + <li class="breadcrumb-nav-list-item"><a href="{{ first_level_url }}">{{ page.parent }}</a></li> |
| 97 | + {% endif %} |
| 98 | + <li class="breadcrumb-nav-list-item"><span>{{ page.title }}</span></li> |
| 99 | + </ol> |
| 100 | + </nav> |
| 101 | + {% endif %} |
| 102 | + {% endunless %} |
| 103 | + <div id="main-content" class="main-content" role="main"> |
| 104 | + {% if site.heading_anchors != false %} |
| 105 | + {% 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%\"" %} |
| 106 | + {% else %} |
| 107 | + {{ content }} |
| 108 | + {% endif %} |
| 109 | + |
| 110 | + {% if page.has_children == true and page.has_toc != false %} |
| 111 | + <hr> |
| 112 | + <h2 class="text-delta">Table of contents</h2> |
| 113 | + <ul> |
| 114 | + {%- assign children_list = pages_list | where: "parent", page.title | where: "grand_parent", page.parent -%} |
| 115 | + {% for child in children_list %} |
| 116 | + <li> |
| 117 | + <a href="{{ child.url | absolute_url }}">{{ child.title }}</a>{% if child.summary %} - {{ child.summary }}{% endif %} |
| 118 | + </li> |
| 119 | + {% endfor %} |
| 120 | + </ul> |
| 121 | + {% endif %} |
| 122 | + |
| 123 | + {% if site.footer_content != nil or site.last_edit_timestamp or site.gh_edit_link %} |
| 124 | + <hr> |
| 125 | + <footer> |
| 126 | + {% if site.back_to_top %} |
| 127 | + <p><a href="#top" id="back-to-top">{{ site.back_to_top_text }}</a></p> |
| 128 | + {% endif %} |
| 129 | + {% if site.footer_content != nil %} |
| 130 | + <p class="text-small text-grey-dk-000 mb-0">{{ site.footer_content }}</p> |
| 131 | + {% endif %} |
| 132 | + |
| 133 | + {% if site.last_edit_timestamp or site.gh_edit_link %} |
| 134 | + <div class="d-flex mt-2"> |
| 135 | + {% if site.last_edit_timestamp and site.last_edit_time_format and page.last_modified_date %} |
| 136 | + <p class="text-small text-grey-dk-000 mb-0 mr-2"> |
| 137 | + Page last modified: <span class="d-inline-block">{{ page.last_modified_date | date: site.last_edit_time_format }}</span>. |
| 138 | + </p> |
| 139 | + {% endif %} |
| 140 | + {% if site.gh_edit_link and site.gh_edit_link_text and site.gh_edit_repository and site.gh_edit_branch and site.gh_edit_view_mode %} |
| 141 | + <p class="text-small text-grey-dk-000 mb-0"> |
| 142 | + <a href="{{ site.gh_edit_repository }}/{{ site.gh_edit_view_mode }}/{{ site.gh_edit_branch }}{% if site.gh_edit_source %}/{{ site.gh_edit_source }}{% endif %}/{{ page.path }}" id="edit-this-page">{{ site.gh_edit_link_text }}</a> |
| 143 | + </p> |
| 144 | + {% endif %} |
| 145 | + </div> |
| 146 | + {% endif %} |
| 147 | + </footer> |
| 148 | + {% endif %} |
| 149 | + |
| 150 | + </div> |
| 151 | + </div> |
| 152 | + |
| 153 | + {% if site.search_enabled != false %} |
| 154 | + {% if site.search.previews %} |
| 155 | + {% include lunr-preview.html %} |
| 156 | + {% else %} |
| 157 | + {% include lunr.html %} |
| 158 | + {% endif %} |
| 159 | + {% endif %} |
| 160 | + </div> |
| 161 | + |
| 162 | + {% if site.mermaid %} |
| 163 | + {% include mermaid.html %} |
| 164 | + {% endif %} |
| 165 | +</body> |
| 166 | +</html> |
0 commit comments