This repository was archived by the owner on Sep 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathnav.ext
More file actions
25 lines (22 loc) · 1.28 KB
/
nav.ext
File metadata and controls
25 lines (22 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% capture location %}{{ page.url | remove_first:'/' | split:'/' | first }}{% endcapture %}
<nav id="primary-menu">
<!-- Primary Navigation -->
<!-- ============================================= -->
<ul>
<li {% if location == 'index.html' %}class="current" {% endif %}><a href="http://codeweek.eu/">Home</a></li>
<li><a href="http://events.codeweek.eu/">Events</a></li>
<li {% if location == 'ambassadors' %}class="current" {% endif %}><a href="http://events.codeweek.eu/ambassadors">Ambassadors</a></li>
<li {% if location == 'resources' %}class="current" {% endif %}><a href="/resources/">Resources</a></li>
<!-- <li {% if location == 'code' %}class="current" {% endif %}><a href="/code/">Why coding?</a></li> -->
<li {% if location == 'about' %}class="current" {% endif %}><a href="/about/">About</a></li>
<li><a href="http://blog.codeweek.eu/">News</a></li>
</ul>
<!-- Top Search -->
<!-- ============================================= -->
<div id="top-search">
<a href="#" id="top-search-trigger"><i class="icon-search3"></i><i class="icon-line-cross"></i></a>
<form action="/search.html" method="get">
<input type="text" name="q" class="form-control" value="" placeholder="Type & hit Enter...">
</form>
</div><!-- #top-search end -->
</nav><!-- #primary-menu end -->