Skip to content
Snippets Groups Projects
default.html 2.02 KiB
Newer Older
Patrick Marsceill's avatar
Patrick Marsceill committed
<!DOCTYPE html>

<html lang="en-us">
{% include head.html %}

<div class="page-wrap">
  <div class="side-bar">
    <a href="{{ site.url }}" class="site-title fs-6 fw-300 text-grey-dk-300">Just the <span class="fw-700">/docs</span></a>
Patrick Marsceill's avatar
Patrick Marsceill committed
    <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>
    <div class="navigation main-nav js-main-nav">
Patrick Marsceill's avatar
Patrick Marsceill committed
      {% include nav.html %}
Patrick Marsceill's avatar
Patrick Marsceill committed
      <footer role="contentinfo" class="site-footer">
        <p class="text-small text-grey-dk-000">This site uses <a href="https://github.com/pmarsceill/just-the-docs">Just the Docs</a>, a documentation theme for Jekyll.</p>
      </footer>
Patrick Marsceill's avatar
Patrick Marsceill committed
    </div>
  </div>
  <div class="main-content-wrap">
    <div class="main-content">
Patrick Marsceill's avatar
Patrick Marsceill committed
      <input type="text" class="js-search-input" />
      <div class="js-search-results search-results-wrap"></div>
Patrick Marsceill's avatar
Patrick Marsceill committed
      {% unless page.url == "/" %}
Patrick Marsceill's avatar
Patrick Marsceill committed
      <nav class="breadcrumb-nav">
Patrick Marsceill's avatar
Patrick Marsceill committed
        <ol class="breadcrumb-nav-list">
          <li class="breadcrumb-nav-list-item"><a href="{{ site.url }}">Home</a></li>
          {% if page.parent != nil and page.parent != page.title %}
          <li class="breadcrumb-nav-list-item"><a href="{{ site.url }}/{{ page.parent | slugify }}">{{ page.parent }}</a></li>
          {% endif %}
          <li class="breadcrumb-nav-list-item"><span>{{ page.title }}</span></li>
        </ol>
      </nav>
      {% endunless %}
Patrick Marsceill's avatar
Patrick Marsceill committed
      <div class="page-content">
        {{ content }}
Patrick Marsceill's avatar
Patrick Marsceill committed

Patrick Marsceill's avatar
Patrick Marsceill committed
        {% if page.has_children == true %}
        <hr>
        <h2 class="text-delta">Table of contents</h2>
        {% assign children_list = site.pages | sort:"nav_order" %}
        <ol>
          {% for child in children_list %}
            {% if child.parent == page.title and child.title != page.title %}
            <li>
              <a href="{{ child.url | absolute_url }}">{{ child.title }}</a>
            </li>
            {% endif %}
          {% endfor %}
        </ol>
        {% endif %}
      </div>
Patrick Marsceill's avatar
Patrick Marsceill committed
    </div>
  </div>
</div>

</html>