forked from disouzam/sql-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnav.html
More file actions
15 lines (15 loc) · 677 Bytes
/
nav.html
File metadata and controls
15 lines (15 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<nav>
<div class="row underline">
<div class="col-2 left">
<a class="navlink" href="{{'/' | relative_url}}">Home</a>
</div>
<div class="col-10 right">
<a href="{{site.data.tutorial.repo}}">repo</a>
{% if site.data.tutorial.release %}<a href="{{site.data.tutorial.release}}">download</a>{% endif %}
<a class="navlink" href="{{ '/license/' | relative_url }}">license</a>
<a class="navlink" href="{{ '/conduct/' | relative_url }}">conduct</a>
<a class="navlink" href="{{ '/contributing/' | relative_url }}">contributing</a>
<a class="navlink" href="{{ '/colophon/' | relative_url }}">colophon</a>
</div>
</div>
</nav>