|
| 1 | +<!DOCTYPE html> |
| 2 | + |
| 3 | +<html lang="en-us"> |
| 4 | +{% include head.html %} |
| 5 | +<body> |
| 6 | + |
| 7 | + <div class="page-wrap"> |
| 8 | + <div class="side-bar"> |
| 9 | + <a href="{{ site.url }}{{ site.baseurl }}" class="site-title fs-6 lh-tight">{{ site.title }}</a> |
| 10 | + <span class="fs-3"><button class="js-main-nav-trigger navigation-list-toggle btn btn-outline" type="button" data-text-toggle="Hide">Menu</button></span> |
| 11 | + <div class="navigation main-nav js-main-nav"> |
| 12 | + {% include nav.html %} |
| 13 | + </div> |
| 14 | + <footer role="contentinfo" class="site-footer"> |
| 15 | + <p class="text-small text-grey-dk-000 mb-0">This site uses <a href="https://github.com/pmarsceill/just-the-docs">Just the Docs</a>, a documentation theme for Jekyll.</p> |
| 16 | + </footer> |
| 17 | + </div> |
| 18 | + <div class="main-content-wrap js-main-content" tabindex="0"> |
| 19 | + <div class="page-header"> |
| 20 | + <div class="main-content"> |
| 21 | + {% if site.search_enabled != nil %} |
| 22 | + <div class="search js-search"> |
| 23 | + <div class="search-input-wrap"> |
| 24 | + <input type="text" class="js-search-input search-input" tabindex="0" placeholder="Search {{ site.title }}" aria-label="Search {{ site.title }}" autocomplete="off"> |
| 25 | + <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> |
| 26 | + </div> |
| 27 | + <div class="js-search-results search-results-wrap"></div> |
| 28 | + </div> |
| 29 | + {% endif %} |
| 30 | + {% if site.aux_links != nil %} |
| 31 | + <ul class="list-style-none text-small mt-md-1 mb-md-1 pb-4 pb-md-0 js-aux-nav aux-nav"> |
| 32 | + {% for link in site.aux_links %} |
| 33 | + <li class="d-inline-block my-0{% unless forloop.last %} mr-2{% endunless %}"><a href="{{ link.last }}">{{ link.first }}</a></li> |
| 34 | + {% endfor %} |
| 35 | + </ul> |
| 36 | + {% endif %} |
| 37 | + </div> |
| 38 | + </div> |
| 39 | + <div class="main-content"> |
| 40 | + {% unless page.url == "/" %} |
| 41 | + {% if page.parent %} |
| 42 | + <nav class="breadcrumb-nav"> |
| 43 | + <ol class="breadcrumb-nav-list"> |
| 44 | + {% if page.grand_parent %} |
| 45 | + <li class="breadcrumb-nav-list-item"><a href="{{ first_level_url }}">{{ page.grand_parent }}</a></li> |
| 46 | + <li class="breadcrumb-nav-list-item"><a href="{{ second_level_url }}">{{ page.parent }}</a></li> |
| 47 | + {% else %} |
| 48 | + <li class="breadcrumb-nav-list-item"><a href="{{ first_level_url }}">{{ page.parent }}</a></li> |
| 49 | + {% endif %} |
| 50 | + <li class="breadcrumb-nav-list-item"><span>{{ page.title }}</span></li> |
| 51 | + </ol> |
| 52 | + </nav> |
| 53 | + {% endif %} |
| 54 | + {% endunless %} |
| 55 | + <div id="main-content" class="page-content" role="main"> |
| 56 | + {{ content }} |
| 57 | + |
| 58 | + {% if page.has_children == true and page.has_toc != false %} |
| 59 | + <hr> |
| 60 | + <h2 class="text-delta">Table of contents</h2> |
| 61 | + {% assign children_list = site.pages | sort:"nav_order" %} |
| 62 | + <ul> |
| 63 | + {% for child in children_list %} |
| 64 | + {% if child.parent == page.title and child.title != page.title %} |
| 65 | + <li> |
| 66 | + <a href="{{ child.url | absolute_url }}">{{ child.title }}</a> |
| 67 | + </li> |
| 68 | + {% endif %} |
| 69 | + {% endfor %} |
| 70 | + </ul> |
| 71 | + {% endif %} |
| 72 | + </div> |
| 73 | + </div> |
| 74 | + </div> |
| 75 | + </div> |
| 76 | + |
| 77 | +</body> |
| 78 | +</html> |
0 commit comments