Files
Modul_152/Webauftritt/eportfolio/partials/nav.hbs
2022-12-21 19:57:34 +01:00

9 lines
631 B
Handlebars

<nav class="bg-navbackground h-32 text-right flex flex-row justify-between items-center px-20">
<a href="index.html"> <img src="/curling_logo.png" alt="Logo" class="h-28"/></a>
<div class="flex justify-between w-1/3 text-textcolor">
<a href="index.html" class="{{#if homeActive}}font-bold{{/if}}">Home</a>
<a href="rules.html" class="{{#if rulesActive}}font-bold{{/if}}">Regeln</a>
<a href="spiritofcurling.html" class="{{#if spiritActive}}font-bold{{/if}}">Spirit of Curling</a>
<a href="impressions.html" class="{{#if impressionsActive}}font-bold{{/if}}">Impressionen</a>
</div>
</nav>