Skip to content

Instantly share code, notes, and snippets.

@msarit
Created February 15, 2021 22:17
Show Gist options
  • Save msarit/b01cf39f8d3e60e96e73ba245e217bb5 to your computer and use it in GitHub Desktop.
Save msarit/b01cf39f8d3e60e96e73ba245e217bb5 to your computer and use it in GitHub Desktop.
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand" href="{{"/" | relative_url }}">{{ site.title | escape }}</a>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
{% for item in site.data.navigation %}
<li class="nav-item">
<a class="nav-link" href="{{ item.link }}">{{ item.name }}</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment