generated from esl/code-beam-america
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fff56c7
commit 67d6ed6
Showing
2 changed files
with
46 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,44 @@ | ||
<nav class="navbar-fixed-top nav-menu" id="navMenu"> | ||
<a class="logo" href="#cover"></a> | ||
<div class="toggle-menu"> | ||
<!-- Burger --> | ||
<div class="navTrigger"> | ||
<i class="fa fa-bars"></i> | ||
</div> | ||
<a class="logo" href="#cover"></a> | ||
<div class="toggle-menu"> | ||
<!-- Burger --> | ||
<div class="navTrigger"> | ||
<i class="fa fa-bars"></i> | ||
</div> | ||
<ul class="nav navigation-bar"> | ||
{% for item in site.data.navigation %} | ||
<li> | ||
<a class="page-scroll" href="#{{ item.link }}">{{ item.name }}</a> | ||
</li> | ||
{% endfor %} | ||
<li> | ||
<div class="dropdown"> | ||
<a class="dropbtn">Archives | ||
<i class="fa fa-caret-down"></i> | ||
</a> | ||
<div class="dropdown-content"> | ||
{% for conf in site.data.archive-links %} | ||
<a href="{{conf.link}}" target="_blank">{{conf.name}}</a> | ||
{% endfor %} | ||
</div> | ||
<ul class="nav navigation-bar"> | ||
{% for item in site.data.navigation %} | ||
{% if item.children %} | ||
<li> | ||
<div class="dropdown"> | ||
<a class="dropbtn">{{item.name}} | ||
<i class="fa fa-caret-down"></i> | ||
</a> | ||
<div class="dropdown-content"> | ||
{% for child in item.children %} | ||
<a href="{{child.link}}" target="_blank">{{child.name}}</a> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
</li> | ||
{% else %} | ||
<li> | ||
<a class="page-scroll" href="#{{ item.link }}">{{ item.name }}</a> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
<li> | ||
<div class="dropdown"> | ||
<a class="dropbtn">Archives | ||
<i class="fa fa-caret-down"></i> | ||
</a> | ||
<div class="dropdown-content"> | ||
{% for conf in site.data.archive-links %} | ||
<a href="{{conf.link}}" target="_blank">{{conf.name}}</a> | ||
{% endfor %} | ||
|
||
</div> | ||
</div> | ||
</li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</div> | ||
</li> | ||
</ul> | ||
</nav> |