mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
4eca92c317
* update jquery, remove polyfills, don't use foundation js * fix BOM ? * Update workflow to only check `addons` ---------
26 lines
890 B
HTML
26 lines
890 B
HTML
<nav class="top-bar" data-topbar role="navigation">
|
|
<ul class="title-area">
|
|
<li class="name">
|
|
<h3>
|
|
<a href="{{ site.baseurl }}/index.html">
|
|
<img src="{{ site.baseurl }}/img/ace3-logo-white-tiny.webp" srcset="{{ site.baseurl }}/img/ace3-logo-white-tiny.webp 1x, {{ site.baseurl }}/img/ace3-logo-white-tiny-2x.webp 2x" alt="ACE3 logo" width="100" height="23" />
|
|
</a>
|
|
</h3>
|
|
</li>
|
|
<li class="toggle-topbar menu-icon">
|
|
<a href="#">
|
|
<span>Menu</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<div class="top-bar-section">
|
|
<!-- Left Nav Section -->
|
|
<ul class="left">
|
|
{% assign pages_list = site.pages | sort: "order" %}
|
|
{% assign group = 'mainNav' %}
|
|
{% include pages_list %}
|
|
</ul>
|
|
</div>
|
|
</nav>
|