summaryrefslogtreecommitdiff
path: root/src/_components/nav.vto
blob: f1d935abc0bc12cc9b47090552d071a4f18fc296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<nav>
	<div class="flex flex-column justify-center mx-auto p-7">
		<ul class="inline">
			{{ for item of links }}
				<li class="inline text-base p-2">
					<a class="rounded-xl bg-yellow p-2" href={{ item.url }}>
						{{ item.name }}
					</a>
				</li>
			{{ /for }}
		</ul>
	</div>
</nav>