File indexing completed on 2025-01-30 09:18:39
0001 <div class="container-fluid" style="min-width:1100px;padding-right:10px;">
0002 <nav class="navbar navbar-expand-lg navbar-dark fixed-top bg-dark">
0003 <div class="col-lg-12 d-flex">
0004
0005 <a class="navbar-brand" href="{{ '/' | relative_url }}">
0006 <img src="{{ site.eic_logo | relative_url }}" height="32" width="32">
0007
0008 <img src="{{ site.home_icon | relative_url }}" height="16" width="16">
0009 </a>
0010
0011 <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
0012 <span class="navbar-toggler-icon"></span>
0013 </button>
0014
0015 <div class="collapse navbar-collapse" id="navbarCollapse">
0016 <ul class="navbar-nav mr-auto">
0017 {% for menu in site.data.menus %}
0018
0019 {% if menu.exclude %}{% continue %}{% endif %}
0020
0021 {% if menu.right %}</ul><ul class="navbar-nav text-right"><li>
0022
0023 {% include layouts/autodrop_data.md what=menu.name %}
0024 <a class="navbar-brand mr-auto" href="{{ 'https://github.com/eic' | relative_url }}" target="_blank">
0025 <img src="{{ '/assets/images/site/GitHub-Mark-Light-32px.png' | relative_url }}" height="32" ></a></li>
0026
0027 {% else %}
0028
0029 {% include layouts/autodrop_data.md what=menu.name %}
0030
0031 {% endif %}
0032
0033 {% endfor %}
0034 </ul>
0035 </div>
0036
0037 </div>
0038 </nav>
0039 </div>