aboutsummaryrefslogtreecommitdiff
path: root/sphinx_ascii_theme/navigation.html
blob: efef6dcbc8c133a4aaaedd6fdbe910fc93253d58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="navigation">
  <div class="lang">
    <a href="/en/{{pagename}}{{file_suffix}}">EN</a>
    <a href="/fr/{{pagename}}{{file_suffix}}">FR</a>
  </div>
  <div class="nav">
    {% for a in get_nav_object(collapse=true, maxdepth=1, includehidden=true) %}
    {% if a.title == "Blog" %}
    <hr/>
    {% endif %}
    <a href="{{a.url}}">
      <span class="left"></span>
      <span class="center">{{a.title}}</span>
      <span class="right"></span>
    </a>
    {% endfor %}
  </div>
</div>