aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_includes/links.html
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-08-23 18:27:36 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-08-23 18:27:36 +0300
commit6ff38b5d87707737741b147d3117c02a6b716dea (patch)
treee8a0d00da1c5671c23e2dbd586b5fca197dfa0a6 /_includes/links.html
parentbump dependencies (diff)
downloadjekyll-theme-6ff38b5d87707737741b147d3117c02a6b716dea.tar.gz
jekyll-theme-6ff38b5d87707737741b147d3117c02a6b716dea.zip
add icons to the navbar
Diffstat (limited to '')
-rw-r--r--_includes/links.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/links.html b/_includes/links.html
index 70e643b..ddab348 100644
--- a/_includes/links.html
+++ b/_includes/links.html
@@ -1,9 +1,9 @@
{% for node in page_list %}
{% if group == null or group == node.group %}
{% if page.url == node.url %}
- <li class="active"><a href="{{ site.baseurl }}{{ node.url }}" class="active">{{ node.title }}</a></li>
+ <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.title }}</a></li>
+ <li><a href="{{ site.baseurl }}{{ node.url }}">{{ node.navbar_link }}</a></li>
{% endif %}
{% endif %}
{% endfor %}