You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

103 lines
4.8 KiB

  1. ---
  2. layout: table_wrappers
  3. ---
  4. <!DOCTYPE html>
  5. <html lang="{{ site.lang | default: "en-US" }}">
  6. {% include head.html %}
  7. <body>
  8. <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
  9. <symbol id="link" viewBox="0 0 16 16">
  10. <title>Link</title>
  11. <path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path>
  12. </symbol>
  13. </svg>
  14. <div class="page-wrap">
  15. <div class="side-bar">
  16. <div class="site-header">
  17. <a href="{{ site.url }}{{ site.baseurl }}" class="site-title lh-tight">{% include title.html %}</a>
  18. <button class="menu-button fs-3 js-main-nav-trigger" data-text-toggle="Hide" type="button">Menu</button>
  19. </div>
  20. <div class="navigation main-nav js-main-nav">
  21. {% include nav.html %}
  22. </div>
  23. <footer class="site-footer">
  24. <p class="text-small text-grey-dk-000 mb-4">This site uses <a href="https://github.com/pmarsceill/just-the-docs">Just the Docs</a>, a documentation theme for Jekyll.</p>
  25. </footer>
  26. </div>
  27. <div class="main-content-wrap js-main-content" tabindex="0">
  28. <div class="main-content">
  29. <div class="page-header js-page-header">
  30. {% if site.search_enabled != false %}
  31. <div class="search">
  32. <div class="search-input-wrap">
  33. <input type="text" class="js-search-input search-input" tabindex="0" placeholder="Search {{ site.title }}" aria-label="Search {{ site.title }}" autocomplete="off">
  34. <svg width="14" height="14" viewBox="0 0 28 28" xmlns="http://www.w3.org/2000/svg" class="search-icon"><title>Search</title><g fill-rule="nonzero"><path d="M17.332 20.735c-5.537 0-10-4.6-10-10.247 0-5.646 4.463-10.247 10-10.247 5.536 0 10 4.601 10 10.247s-4.464 10.247-10 10.247zm0-4c3.3 0 6-2.783 6-6.247 0-3.463-2.7-6.247-6-6.247s-6 2.784-6 6.247c0 3.464 2.7 6.247 6 6.247z"/><path d="M11.672 13.791L.192 25.271 3.02 28.1 14.5 16.62z"/></g></svg>
  35. </div>
  36. <div class="js-search-results search-results-wrap"></div>
  37. </div>
  38. {% endif %}
  39. {% if site.aux_links != nil %}
  40. <ul class="list-style-none text-small aux-nav">
  41. {% for link in site.aux_links %}
  42. <li class="d-inline-block my-0{% unless forloop.last %} mr-2{% endunless %}"><a href="{{ link.last }}">{{ link.first }}</a></li>
  43. {% endfor %}
  44. </ul>
  45. {% endif %}
  46. </div>
  47. <div class="page">
  48. {% unless page.url == "/" %}
  49. {% if page.parent %}
  50. <nav class="breadcrumb-nav">
  51. <ol class="breadcrumb-nav-list">
  52. {% if page.grand_parent %}
  53. <li class="breadcrumb-nav-list-item"><a href="{{ first_level_url }}">{{ page.grand_parent }}</a></li>
  54. <li class="breadcrumb-nav-list-item"><a href="{{ second_level_url }}">{{ page.parent }}</a></li>
  55. {% else %}
  56. <li class="breadcrumb-nav-list-item"><a href="{{ first_level_url }}">{{ page.parent }}</a></li>
  57. {% endif %}
  58. <li class="breadcrumb-nav-list-item"><span>{{ page.title }}</span></li>
  59. </ol>
  60. </nav>
  61. {% endif %}
  62. {% endunless %}
  63. <div id="main-content" class="page-content" role="main">
  64. {% if site.heading_anchors != false %}
  65. {% include vendor/anchor_headings.html html=content beforeHeading="true" anchorBody="<svg viewBox=\"0 0 16 16\" aria-hidden=\"true\"><use xlink:href=\"#link\"></use></svg>" anchorClass="anchor-heading" %}
  66. {% else %}
  67. {{ content }}
  68. {% endif %}
  69. {% if page.has_children == true and page.has_toc != false %}
  70. <hr>
  71. <h2 class="text-delta">Table of contents</h2>
  72. {% assign children_list = site.pages | sort:"nav_order" %}
  73. <ul>
  74. {% for child in children_list %}
  75. {% if child.parent == page.title and child.title != page.title %}
  76. <li>
  77. <a href="{{ child.url | absolute_url }}">{{ child.title }}</a>{% if child.summary %} - {{ child.summary }}{% endif %}
  78. </li>
  79. {% endif %}
  80. {% endfor %}
  81. </ul>
  82. {% endif %}
  83. {% if site.footer_content != nil %}
  84. <hr>
  85. <footer role="contentinfo">
  86. <p class="text-small text-grey-dk-000 mb-0">{{ site.footer_content }}</p>
  87. </footer>
  88. {% endif %}
  89. </div>
  90. </div>
  91. </div>
  92. </div>
  93. </body>
  94. </html>