view _includes/navigation.html @ 118:503e22dd6cf5

blog: add (unfinished) series on OMS I'll update this as I do more research into the inner workings of OMS. It's much more interesting (and more convoluted) than ASIO is unfortunately, but it means the blog posts will probably be more interesting
author Paper <paper@tflc.us>
date Sun, 19 Oct 2025 23:15:02 -0400
parents a143c3991472
children
line wrap: on
line source

<div class="navbar drop-shadow-box">
	<div class="navbar-group">
		{% for item in site.data.navigation %}
		<a href="{{ item.link }}" {% if page.url == item.link or page.url contains item.prefix %}class="navbar-item-active"{% else %}class="navbar-item"{% endif %}>{{ item.name }}</a>
		{% endfor %}
	</div>
	<div class="navbar-group">
		{% for item in site.data.navigation-external %}
		<a href="{{ item.link }}" class="navbar-item navbar-right">{{ item.name }}</a>
		{% endfor %}
	</div>
</div>