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
<nav class="page-nav">
  <div class="nav-bar">
    <a class="nav-wordmark" href="/" aria-label="quire home">
      <svg class="q-mark" width="16" height="16" viewBox="0 0 16 16" aria-hidden="true">
        <rect x="2" y="2" width="12" height="12" rx="1.2" fill="none" stroke="currentColor" stroke-width="1.2"/>
        <line x1="4.5" y1="6"  x2="11.5" y2="6"  stroke="currentColor" stroke-width="0.8"/>
        <line x1="4.5" y1="8"  x2="11.5" y2="8"  stroke="currentColor" stroke-width="0.8"/>
        <line x1="4.5" y1="10" x2="9"    y2="10" stroke="currentColor" stroke-width="0.8"/>
        <circle cx="11" cy="11" r="3" fill="none" stroke="currentColor" stroke-width="0.8" stroke-dasharray="1.2 1.2" opacity="0.35"/>
      </svg>

    </a>
    <a class="nav-repo" href="/{{ repo }}">{{ repo }}</a>
    {% if let Some(crumbs) = crumbs %}
    {% for crumb in crumbs %}
    <span class="sep">/</span>
    {% if let Some(href) = crumb.href %}
    <a class="nav-crumb" href="{{ href }}">{{ crumb.label }}</a>
    {% else %}
    <span class="nav-crumb">{{ crumb.label }}</span>
    {% endif %}
    {% endfor %}
    {% endif %}
  </div>
</nav>