Sha256: 3109e309b59d6fa23ecc713a46fdcec3560f850ce8796f43f74dcb0fb7407020

Contents?: true

Size: 1.98 KB

Versions: 1

Compression:

Stored size: 1.98 KB

Contents

<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="{{ "/assets/css/index.css?v=1" | relative_url }}">
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap" rel="stylesheet">
    {% seo %}
  </head>
  <body>
    <div class="docs">
      <div class="sidebar">
        {% include sidebar.html %}
      </div>
      <div class="content">
        <div class="content-body p-6 markdown-body">
          {{ content }}
          {% if page.has_children == true and page.has_toc != false %}
            <hr>
            <h2 class="text-delta">Table of contents</h2>
            {% assign children_list = site.pages | sort:"nav_order" %}
            <ul>
              {% 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>
                    {% if child.summary %} - {{ child.summary }}{% endif %}
                  </li>
                {% endif %}
              {% endfor %}
            </ul>
          {% endif %}
        </div>
      </div>
    </div>
    <script src="{{ "/assets/js/anchor.min.js?1" | relative_url }}"></script>
    <script src="{{ "/assets/js/index.js?1" | relative_url }}"></script>
    <script>anchors.add();</script>
    {% if site.google_analytics %}
      <script>
        (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
        (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
        m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
        })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
        ga('create', '{{ site.google_analytics }}', 'auto');
        ga('send', 'pageview')
      ;</script>
    {% endif %}
  </body>
</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
github-docs-0.0.1 _layouts/default.html