aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_includes/navbar.html
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-06-25 02:13:47 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-06-25 02:13:47 +0300
commit7f02962f5502bb581f0b50d534be0bcea0a739b2 (patch)
tree43a1cd08cbb888e674e0333a054da787ce8c1599 /_includes/navbar.html
parentREADME update (diff)
downloadjekyll-theme-7f02962f5502bb581f0b50d534be0bcea0a739b2.tar.gz
jekyll-theme-7f02962f5502bb581f0b50d534be0bcea0a739b2.zip
move common assets to common/, more info to config
Diffstat (limited to '_includes/navbar.html')
-rw-r--r--_includes/navbar.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/_includes/navbar.html b/_includes/navbar.html
deleted file mode 100644
index af4a1c5..0000000
--- a/_includes/navbar.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<nav class="navbar navbar-default navbar-static-top" role="navigation">
- <div class="container">
- <div class="navbar-header">
- <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
- <span class="sr-only">Toggle navigation</span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="navbar-brand" href="/">{{ site.personal_info.name }}</a>
- </div>
- <div class="navbar-collapse collapse">
- <ul class="nav navbar-nav">
- {% for node in site.pages %}
- {% if node.groups contains 'navbar' %}
- {% if page.url == node.url %}
- <li class="active"><a href="{{ site.baseurl }}{{ node.url }}" class="active">{{ node.navbar_link }}</a></li>
- {% else %}
- <li><a href="{{ site.baseurl }}{{ node.url }}">{{ node.navbar_link }}</a></li>
- {% endif %}
- {% endif %}
- {% endfor %}
- </ul>
- </div>
- </div>
-</nav>