-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnav.html
24 lines (23 loc) · 1.02 KB
/
nav.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<header class="site-header">
<nav>
<div class="logo">
<a href="/">
<img class="logo img-fluid" src="/images/NET Lab Logo@3x.png">
</a>
</div>
<ul class="nav">
<a class="nav-link" href="/">Home</a>
{% for my_page in site.pages %}
{% if my_page.title %}
{% if page.url == my_page.url %}
<a class="nav-link active" href="{{ my_page.url | prepend: site.baseurl }}">{{ my_page.title }}</a>
<!-- <a class="nav-link active" href="{{ my_page.url | prepend: site.baseurl }}" style="color: {{ site.colors[forloop.index0] }};">{{ my_page.title }}</a> -->
{% else %}
<a class="nav-link" href="{{ my_page.url | prepend: site.baseurl }}">{{ my_page.title }}</a>
<!-- <a class="nav-link" href="{{ my_page.url | prepend: site.baseurl }}" style="color: {{ site.colors[forloop.index0] }};">{{ my_page.title }}</a> -->
{% endif %}
{% endif %}
{% endfor %}
</ul>
</nav>
</header>