<!DOCTYPE html> <html lang=“{{site.active_lang}}” class=“no-js”>

{% include head.html %}
{% assign currentRequest = page.url | remove_first: '/' | downcase | split: '/' %}

<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top" data-offset="151" class="docslayout">

      {% include navigation.html currentRequest=currentRequest %}
      <style>.logo { display: none !important;}</style>

      <div style="margin-top: 104px;padding: 0px;"></div>

              <header class="docsheader">
                      <h1>
                              <a href="{{ site.baseurl }}/docs" style="color:#fff;">{{ site.docstitle }}</a>
                              <button type="button" class="open-nav" id="open-nav"></button>
                      </h1>

                      <form action="{{ site.baseurl }}/docs/search/" method="get">
                              <input type="text" name="q" id="search-input" placeholder="Search" autofocus>
                              <input type="submit" value="Search" style="display: none;">
                      </form>

                      <nav {% if site.docs.show_full_navigation %}class="full-navigation"{% endif %}>
                              <ul>
                                      <li class="nav-item top-level {% if page.url == '/' %}current{% endif %}">
                                              <a href="{{ site.baseurl }}/docs">Introduction</a>
                                      </li>
                              </ul>

                              <ul>
                                      {% assign grouped = site.docs | group_by: 'category' %}
                                      {% for group in grouped %}
                                              <li class="nav-item top-level {% if group.name == page.category %}current{% endif %}">
                                                      {% assign items = group.items | sort: 'order' %}
                                                      <a href="{{ site.baseurl }}{{ items.first.url }}">{{ group.name }}</a>
                                                      <ul>
                                                              {% for item in items %}
                                                                      <li class="nav-item {% if item.url == page.url %}current{% endif %}"><a href="{{ site.baseurl }}{{ item.url }}">{{ item.title }}</a></li>
                                                              {% endfor %}
                                                      </ul>
                                              </li>
                                      {% endfor %}
                              </ul>
                              <ul>
                                      <li class="nav-item top-level {% if page.url == '/' %}current{% endif %}">
                                              <a href="/docs/changelog">Changelog</a>
                                      </li>
                              </ul>

                      </nav>
              </header>

              <section class="docsmain">
                      <div class="page-header">
                              <h2>{% if page.category %}{{ page.category }}{% else %}{{ site.title }}{% endif %}</h2>
                              <h3>{{ page.title }}</h3>
                      </div>
                      <article class="content">
                              {{ content }}
                      </article>
              </section>

              {% include footer.html %}
              {% include scripts.html %}              

      </body>

</html>