/ layouts / _default / baseof.html
baseof.html
 1  <!doctype html>
 2  <html lang="{{ .Site.LanguageCode }}">
 3    <head>
 4      <meta charset="utf-8">
 5      <title>{{ .Site.Title }}: {{ .Title }}</title>
 6      <meta name="viewport" content="width=device-width, initial-scale=1.0">
 7      <link rel="shortcut icon" type="image/x-icon" href="/images/favicon.ico">
 8      <link rel="apple-touch-icon" sizes="57x57" href="/images/apple-touch-icon-57.png">
 9      <link rel="apple-touch-icon" sizes="60x60" href="/images/apple-touch-icon-60.png">
10      <link rel="apple-touch-icon" sizes="72x72" href="/images/apple-touch-icon-72.png">
11      <link rel="apple-touch-icon" sizes="76x76" href="/images/apple-touch-icon-76.png">
12      <link rel="apple-touch-icon" sizes="114x114" href="/images/apple-touch-icon-114.png">
13      <link rel="apple-touch-icon" sizes="120x120" href="/images/apple-touch-icon-120.png">
14      <link rel="apple-touch-icon" sizes="144x144" href="/images/apple-touch-icon-144.png">
15      <link rel="apple-touch-icon" sizes="152x152" href="/images/apple-touch-icon-152.png">
16      <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-180.png">
17      <link rel="mask-icon" href="/images/mask-icon.svg" color="#5e0c72">
18      <link rel="stylesheet" href="{{ "css/fonts.css" | relURL }}">
19      <link rel="stylesheet" href="{{ "css/main.css" | relURL }}">
20    </head>
21    <body{{ with .Section }} id="{{ . }}"{{ end }}>
22      <div>
23        <header>
24          <figure>
25            <figcaption>
26              <a href="/">Contributor Covenant</a>
27            </figcaption>
28            <a href="/">
29              <img class="logo" src="/images/logo.svg" alt="Contributor Covenant Logo">
30            </a>
31          </figure>
32          <nav id="navigation">
33            <ul>
34              <li><a href="/">Home</a></li>
35              <li><a href="/adopters">Adopters</a></li>
36              {{- range last 1 (where $.Site.RegularPages "Section" "version") -}}
37              <li><a href="{{ .Permalink | absLangURL }}">Latest&nbsp;Version</a></li>
38              {{- end -}}
39              <li><a href="/translations">Translations</a></li>
40              <li><a href="/faq" title="Frequently Asked Questions">FAQ</a></li>
41            </ul>
42          </nav>
43        </header>
44      </div>
45      <div id="veil">
46        {{ block "main" . }}
47        {{ end }}
48        <footer>
49          <p>
50            Contributor Covenant was created by <a href="https://where.coraline.codes/" title="Coraline Ada Ehmke">Coraline Ada Ehmke</a> in 2014 and is released under the <a href="https://github.com/EthicalSource/contributor_covenant/blob/release/LICENSE.md"><abbr title="Creative Commons — Attribution 4.0 International — CC BY 4.0">CC BY 4.0</abbr> License</a>.<br>
51            Contributor Covenant is stewarded by the <a href="https://ethicalsource.dev">Organization for Ethical Source</a>, and we welcome <a href="https://github.com/EthicalSource/contributor_covenant">contributions, including translations</a>.
52          </p>
53        </footer>
54      </div>
55    </body>
56  </html>