-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
745ac5b
commit 66e0220
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
layout: page | ||
--- | ||
|
||
<div class="gut-lg"> | ||
<nav class="side-nav col-md-3 float-md-left js-side-nav"> | ||
<ul class="list-style-none"> | ||
{% assign pages_list = site.pages | sort:"order" %} | ||
{% for node in pages_list %} | ||
{% if node.parent == page.parent %} | ||
<li class="side-nav-item border-bottom m-0{% if page.url == node.url %} active{% endif %} js-side-nav-item"><a href="{{ node.url | absolute_url }}" class="side-nav-link py-2 d-block{% if page.url == node.url %} active js-side-nav-link-active{% endif %}">{{ node.title }}</a></li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
</nav> | ||
|
||
<div class="col-md-9 float-md-left"> | ||
{{ content }} | ||
|
||
{% include _gh_link.html %} | ||
</div> | ||
</div> |