aboutsummaryrefslogtreecommitdiff
path: root/common/navigation.j2.inc
blob: 2a38f7c74fe3426ba291c4e31e6068fd3e1edc4b (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
32
33
34
35
36
37
38
39
40
41
42
43
44
<nav class="navbar navbar-inverse">
  <div class="container-fluid">
    <ul class="nav navbar-nav">
      <li class="{{ 'active' if filename == 'index.html' else '' }}"><a href="index.html">Home</a></li>
      <li class="{{ 'active' if filename == 'investors.html' else '' }}"><a href="investors.html">Investors</a></li>
      <li class="dropdown">
        <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Resources <span class="caret"></span></a>
        <ul class="dropdown-menu">
          <li><a href="architecture.html">System Architecture</a></li>
          <li><a href="faq.html">FAQ</a></li>
          <li><a href="governments.html">Taler for Governments</a></li>
          <li><a href="developers.html">Taler for Developers</a></li>
          <li><a href="merchants.html">Taler for Merchants</a></li>
        </ul>
      </li>
      <li class="{{ 'active' if filename == 'about.html' else '' }}"><a href="about.html">Team</a></li>
    </ul>
    <ul class="nav navbar-right navbar-form">
      <li>
        <button class="btn btn-dark dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
          <img src="{{ url('images/'+lang+'.png') }}"/></img>
          <span class="caret"></span>
        </button>
        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
          <li>
           <a href="{{ self_localized('en') }}"><img src="{{ url('images/gb.png') }}" height="15" width="23" alt="English">English</a>
          </li>
          <li>
           <a href="{{ self_localized('de') }}"><img src="{{ url('images/de.png') }}" height="15" width="25" alt="Deutsch">Deutsch</a>
          </li>
          <li>
           <a href="{{ self_localized('fr') }}"><img src="{{ url('images/fr.png') }}" height="15" width="22" alt="Français">Français</a>
          </li>
          <li>
           <a href="{{ self_localized('it') }}"><img src="{{ url('images/it.png') }}" height="15" width="22" alt="Italiano">Italiano</a>
          </li>
          <li>
           <a href="{{ self_localized('es') }}"><img src="{{ url('images/es.png') }}" height="15" width="23" alt="Español">Español</a>
          </li>
        </ul>
      </li>
    </ul>
  </div>
</nav>