blob: 2a618efcca2bc7a0a4ed17aba799e35b2ea36be5 (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<header class="container">
<nav class="nav">
<div class="nav-left">
<a class="nav-item is-brand" href="https://www.stronglifters.com/">{{ site.title }}</a>
<a class="nav-item" href="https://www.stronglifters.com/workouts">Workouts</a>
<a class="nav-item" href="https://www.stronglifters.com/gyms">Gyms</a>
<a class="nav-item is-active" href="{{ site.baseurl }}/">Blog</a>
{% for my_page in site.pages %}
{% if my_page.title %}
<a class="nav-item" href="{{ my_page.url | prepend: site.baseurl }}">{{ my_page.title }}</a>
{% endif %}
{% endfor %}
</div>
<div class="nav-center">
<a class="nav-item" href="https://github.com/stronglifters/">
<span class="icon">
<i class="fa fa-github"></i>
</span>
</a>
<a class="nav-item" href="https://twitter.com/stronglifters">
<span class="icon">
<i class="fa fa-twitter"></i>
</span>
</a>
</div>
<span class="nav-toggle">
<span></span>
<span></span>
<span></span>
</span>
<div class="nav-right nav-menu">
<a class="nav-item is-tab" href="https://www.stronglifters.com">Login</a>
</div>
</nav>
</header>
|