aboutsummaryrefslogtreecommitdiff
path: root/modules/private/websites/immae/history/_includes/header.html
blob: 09a5eb384680269f75bdeaabb3017c8840c3a574 (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
  <nav class="bg-light border-bottom px-5 py-3">

    <div class="w-75 mx-auto">

      <div class="row">
        <div class="col-md-6">
          <div class="d-flex align-items-center">
            <a href="{{ site.website }}">
              <img src="{{ site.logo }}" alt="{{ site.name }}" class="logo" alt="Logo">
            </a>
            <a href="{{ site.url }}{{ site.baseurl }}">
              <span class="text-muted mx-3">
                Historique
              </span>
            </a>
          </div>
        </div>

        <div class="col-md-6 ml-auto  d-flex align-items-center justify-content-end">
          {% if site.rss-feed-icon %}
          <a href="{{ site.baseurl }}/feed.xml"
            class="inline-block  mt-3 mt-md-0 text-orange d-flex align-items-center">
            <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 22 22" fill="none"
              stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"
              class="feather feather-rss">
              <path d="M4 11a9 9 0 0 1 9 9"></path>
              <path d="M4 4a16 16 0 0 1 16 16"></path>
              <circle cx="5" cy="19" r="1"></circle>
            </svg>
          </a>
          {% endif %}
        </div>
      </div>

    </div>
  </nav>