-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.html
50 lines (47 loc) · 1.9 KB
/
navbar.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<nav class="navbar is-spaced has-shadow" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://hutscape.com">Hutscape</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navMenu">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navMenu" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item" href="https://hutscape.com/tutorials">Tutorials</a>
<a class="navbar-item" href="https://hutscape.com/checklists">Checklists</a>
<a class="navbar-item" href="https://hutscape.com/tools">Tools</a>
<a class="navbar-item" href="https://hutscape.com/calc">Calculators</a>
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
{% if jekyll.environment == "development" %}
<p class="handwriting has-text-grey-light">Spotted <br>a mistake?</p>
<a class="button is-light is-primary" href="{{site.github.repository_url}}/blob/master/{{page.path}}"><strong>Edit this page</strong>
</a>
{% endif %}
<a class="button is-light" href="{{site.github.repository_url}}">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>Code</span>
</a>
<a class="button is-light" href="{{site.youtube}}">
<span class="icon">
<i class="fab fa-youtube"></i>
</span>
<span>Videos</span>
</a>
<a class="button is-light is-warning" href="{{site.paypal}}">
<span class="icon">
<i class="fab fa-paypal"></i>
</span>
<span>Donate</span>
</a>
</div>
</div>
</div>
</div>
</nav>