_includes/menu.html in another-theme-0.0.1 vs _includes/menu.html in another-theme-1.0.0
- old
+ new
@@ -1,10 +1,11 @@
-<nav class="nav-menu">
- <ul>
+<nav>
+ <ul class="d-flex flex-column">
{% assign sorted_pages = site.pages | sort: "priority" %}
{% for node in sorted_pages %}
{% if node.priority %}
- <li class="{% if node.title == page.title %}active{% endif %}"><a href="{{ site.url }}{{ node.url }}">{{ node.title }}</a></li>
+ <li class="mt-2{% if node.title == page.title %} active{% endif %}""><a class="body-lg fw-600 border-bottom-0" href="{{ site.url }}{{ node.url }}">{{ node.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
+ {% include social.html %}
</nav>