summaryrefslogtreecommitdiff
path: root/common/navigation/items.j2.inc
blob: b1a26481d3aac69035d907fa8d21faa9fe509627 (plain)
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
32
<nav
  class="flex flex-row gap-4 font-medium flex-wrap items-center justify-center text-center"
>
  <a
    class="no-underline hover:underline text-black text-opacity-50 hover:text-opacity-40 transition-all h-max block"
    href="{{ url_localized('index.html') }}"
    >{% trans %}Home{% endtrans %}</a
  >
  <a
    class="no-underline hover:underline text-black text-opacity-50 hover:text-opacity-40 transition-all h-max block"
    href="{{ url_localized('users.html') }}"
    >{% trans %}Users{% endtrans %}</a
  >
  <a
    class="no-underline hover:underline text-black text-opacity-50 hover:text-opacity-40 transition-all h-max block"
    href="{{ url_localized('merchants.html') }}"
    >{% trans %}Merchants{% endtrans %}</a
  >
  <a
    class="no-underline hover:underline text-black text-opacity-50 hover:text-opacity-40 transition-all h-max block"
    href="{{ url_localized('fees.html') }}"
    >{% trans %}Fees{% endtrans %}</a
  >
  <a
    class="no-underline hover:underline text-black text-opacity-50 hover:text-opacity-40 transition-all h-max block"
    href="https://exchange.taler-ops.ch/terms"
    >{% trans %}Terms of Service{% endtrans %}</a
  >
  <div class="contents lg:hidden">
    {% include 'common/navigation/lang-select.j2.inc' %}
  </div>
</nav>