aboutsummaryrefslogtreecommitdiff
path: root/templates/partials/shared/nav.html
blob: 2489bf67c86c4702d841313cb1d8a2d23bda0b0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<nav aria-label="section navigation" class="navbar w-full" role="navigation">
    <div class="w-full flex flex-col space-y-2 md:space-y-0 md:flex-row items-center justify-between py-1 px-8 text-garage-gray bg-garage-orange bg-opacity-20">
        <div class="navbar-brand">
            <a class="hover:rounded-full hover:bg-white" href="{{config.base_url}}">
                <img class="transform duration-150 focus:bg-white hover:bg-white hover:shadow rounded-lg hover:scale-90"
                    src="{{ config.extra.organization.logo }}" width="65px">
            </a>
        </div>
        <div class="navbar-menu" id="navMenu">
            <div class="flex items-center justify-center">
                {% for item in config.extra.navbar_items %}
                    {% if lang == item.code %}
                        {% for nav in item.nav_items %}
                        <a class="font-semibold focus:bg-white hover:bg-white hover:shadow px-4 py-2 rounded-lg"
                            href="{{ nav.url | replace(from='$BASE_URL', to=config.base_url) }}">
                            {{ nav.name }}
                        </a>
                        {% endfor %}
                    {% endif %}
                {% endfor %}
                <button
                    id="nav-search-btn"
                    type="button"
                    title="Open Search (alt + S)"
                    class="focus:bg-white hover:bg-white hover:shadow px-4 py-2 rounded-lg">
                    <svg id="nav-search-btn-icon" class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"></path></svg>
                </button>
            </div>
        </div>
    </div>
</nav>