diff --git a/_config.yml b/_config.yml index 4b938275813238556626fa0cc2696018f24a3e04..d5e278497214bcc71861cf4390c940b515479b05 100644 --- a/_config.yml +++ b/_config.yml @@ -29,6 +29,8 @@ aux_links: "Just the Docs on GitHub": - "//github.com/pmarsceill/just-the-docs" +footer_content: "Copyright © 2017-2019 Patrick Marsceill. Distributed by an <a href=\"https://github.com/pmarsceill/just-the-docs/tree/master/LICENSE.txt\">MIT license.</a>" + # Color scheme currently only supports "dark" or nil (default) color_scheme: nil @@ -37,4 +39,4 @@ color_scheme: nil ga_tracking: UA-2709176-10 plugins: - - jekyll-seo-tag \ No newline at end of file + - jekyll-seo-tag diff --git a/_includes/nav.html b/_includes/nav.html index 2c4bf1eae5fb75d90ac12854e2be94eca70c2f62..35984d50e21e148adbe02b1f82485a7604c63e93 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -1,44 +1,42 @@ -<nav role="navigation" aria-label="Main navigation"> - <ul class="navigation-list"> - {% assign pages_list = site.html_pages | sort:"nav_order" %} - {% for node in pages_list %} - {% unless node.nav_exclude %} - {% if node.parent == nil %} - <li class="navigation-list-item{% if page.url == node.url or page.parent == node.title or page.grand_parent == node.title %} active{% endif %}"> - {% if page.parent == node.title or page.grand_parent == node.title %} - {% assign first_level_url = node.url | absolute_url %} - {% endif %} - <a href="{{ node.url | absolute_url }}" class="navigation-list-link{% if page.url == node.url %} active{% endif %}">{{ node.title }}</a> - {% if node.has_children %} - {% assign children_list = site.html_pages | sort:"nav_order" %} - <ul class="navigation-list-child-list "> - {% for child in children_list %} - {% if child.parent == node.title %} - <li class="navigation-list-item {% if page.url == child.url or page.parent == child.title %} active{% endif %}"> - {% if page.url == child.url or page.parent == child.title %} - {% assign second_level_url = child.url | absolute_url %} - {% endif %} - <a href="{{ child.url | absolute_url }}" class="navigation-list-link{% if page.url == child.url %} active{% endif %}">{{ child.title }}</a> - {% if child.has_children %} - {% assign grand_children_list = site.html_pages | sort:"nav_order" %} - <ul class="navigation-list-child-list"> - {% for grand_child in grand_children_list %} - {% if grand_child.parent == child.title %} - <li class="navigation-list-item {% if page.url == grand_child.url %} active{% endif %}"> - <a href="{{ grand_child.url | absolute_url }}" class="navigation-list-link{% if page.url == grand_child.url %} active{% endif %}">{{ grand_child.title }}</a> - </li> - {% endif %} - {% endfor %} - </ul> - {% endif %} - </li> - {% endif %} - {% endfor %} - </ul> - {% endif %} - </li> - {% endif %} - {% endunless %} - {% endfor %} - </ul> -</nav> +<ul class="navigation-list"> + {% assign pages_list = site.html_pages | sort:"nav_order" %} + {% for node in pages_list %} + {% unless node.nav_exclude %} + {% if node.parent == nil %} + <li class="navigation-list-item{% if page.url == node.url or page.parent == node.title or page.grand_parent == node.title %} active{% endif %}"> + {% if page.parent == node.title or page.grand_parent == node.title %} + {% assign first_level_url = node.url | absolute_url %} + {% endif %} + <a href="{{ node.url | absolute_url }}" class="navigation-list-link{% if page.url == node.url %} active{% endif %}">{{ node.title }}</a> + {% if node.has_children %} + {% assign children_list = site.html_pages | sort:"nav_order" %} + <ul class="navigation-list-child-list "> + {% for child in children_list %} + {% if child.parent == node.title %} + <li class="navigation-list-item {% if page.url == child.url or page.parent == child.title %} active{% endif %}"> + {% if page.url == child.url or page.parent == child.title %} + {% assign second_level_url = child.url | absolute_url %} + {% endif %} + <a href="{{ child.url | absolute_url }}" class="navigation-list-link{% if page.url == child.url %} active{% endif %}">{{ child.title }}</a> + {% if child.has_children %} + {% assign grand_children_list = site.html_pages | sort:"nav_order" %} + <ul class="navigation-list-child-list"> + {% for grand_child in grand_children_list %} + {% if grand_child.parent == child.title %} + <li class="navigation-list-item {% if page.url == grand_child.url %} active{% endif %}"> + <a href="{{ grand_child.url | absolute_url }}" class="navigation-list-link{% if page.url == grand_child.url %} active{% endif %}">{{ grand_child.title }}</a> + </li> + {% endif %} + {% endfor %} + </ul> + {% endif %} + </li> + {% endif %} + {% endfor %} + </ul> + {% endif %} + </li> + {% endif %} + {% endunless %} + {% endfor %} +</ul> diff --git a/_layouts/default.html b/_layouts/default.html index 2d5fe6ba17de842fe5ebaa64bb05aacd207deb39..3eb3a2841c75583e62df49504108557fe504f1a1 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -8,12 +8,14 @@ <div class="side-bar"> <a href="{{ site.url }}{{ site.baseurl }}" class="site-title fs-6 lh-tight">{{ site.title }}</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 %} - </div> - <footer role="contentinfo" class="site-footer"> - <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> - </footer> + <nav role="navigation" aria-label="Main navigation" class="navigation-wrapper"> + <div class="navigation main-nav js-main-nav"> + {% include nav.html %} + </div> + <footer class="site-footer"> + <p class="text-small text-grey-dk-000 mb-4">This site uses <a href="https://github.com/pmarsceill/just-the-docs">Just the Docs</a>, a documentation theme for Jekyll.</p> + </footer> + </nav> </div> <div class="main-content-wrap js-main-content" tabindex="0"> <div class="page-header"> @@ -69,6 +71,13 @@ {% endfor %} </ul> {% endif %} + + {% if site.footer_content != nil %} + <hr> + <footer role="contentinfo"> + <p class="text-small text-grey-dk-000 mb-0">{{ site.footer_content }}</p> + </footer> + {% endif %} </div> </div> </div> diff --git a/_sass/layout.scss b/_sass/layout.scss index ddd56fa977f0484f59e867c3620a521f204bb929..79268795fae04bdae487f68b3aeebd13cc334d9f 100644 --- a/_sass/layout.scss +++ b/_sass/layout.scss @@ -137,6 +137,7 @@ body { .site-footer { position: absolute; bottom: 0; + left: 0; padding-top: $sp-4; padding-bottom: $sp-4; diff --git a/_sass/navigation.scss b/_sass/navigation.scss index 364c569a1cbb931eb96346abf095eb200a5d0a76..6d276b219d19b49b2797f1df001648aebeca52b8 100644 --- a/_sass/navigation.scss +++ b/_sass/navigation.scss @@ -19,6 +19,12 @@ } } +.navigation-wrapper { + display: flex; + flex-direction: column; + flex: 1 1 auto; +} + .navigation-list { padding: 0; margin-top: $sp-4; diff --git a/docs/customization.md b/docs/customization.md index f3fe1c036d6bb549638f369c48e911b152444c16..d33a69b13b1613e074b069c0955a339dcafb676c 100644 --- a/docs/customization.md +++ b/docs/customization.md @@ -69,5 +69,3 @@ $link-color: $blue-000; ``` _Note:_ Editing the variables directly in `_sass/support/variables.scss` is not recommended and can cause other dependencies to fail. - ----