mirror of
https://github.com/thangisme/notes.git
synced 2024-12-22 16:56:45 -05:00
55 lines
2.0 KiB
HTML
55 lines
2.0 KiB
HTML
<!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>
|
|
<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">
|
|
{% include nav.html %}
|
|
<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>
|
|
</div>
|
|
</div>
|
|
<div class="main-content-wrap">
|
|
<div class="main-content">
|
|
<input type="text" class="js-search-input" />
|
|
<div class="js-search-results search-results-wrap"></div>
|
|
{% unless page.url == "/" %}
|
|
<nav class="breadcrumb-nav">
|
|
<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 %}
|
|
<div class="page-content">
|
|
{{ content }}
|
|
|
|
{% 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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</html>
|