mykiwi/mykiwi.blogpublic Fork 0
f8c7bc5befe025e055b2734f5317ed645047d40e
Commits
Clone
git clone https://git.rickub.com/mykiwi/mykiwi.blog.git
git clone ssh://git@rickub.com/mykiwi/mykiwi.blog.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 · on f8c7bc5befe025e055b2734f5317ed645047d40e · Romain Gautier · 15h ago
site-foot.html · 32 lines · 1.3 KBHTML Blame HistoryRaw
 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
<footer class="site-foot column">
  <span>{{ i18n "licenseText" }} <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a></span>
  <span class="sep" aria-hidden="true">&middot;</span>
  <span>
    <a class="rss" href="{{ "index.xml" | relLangURL }}" title="{{ i18n "subscribeRSS" }}" hx-boost="false">
      <svg viewBox="0 0 24 24" aria-hidden="true">
        <path d="M4 11a9 9 0 0 1 9 9h-2.5A6.5 6.5 0 0 0 4 13.5V11z" />
        <path d="M4 4a16 16 0 0 1 16 16h-2.5A13.5 13.5 0 0 0 4 6.5V4z" />
        <circle cx="5.5" cy="18.5" r="2" />
      </svg>
      {{ i18n "rssLabel" }}
    </a>
  </span>
  {{- $translations := .AllTranslations }}
  {{- if gt (len $translations) 1 }}
    <span class="sep" aria-hidden="true">&middot;</span>
    <span class="lang-switch">
      {{- range sort $translations "Language.Weight" }}
        {{- if eq .Lang $.Lang }}
          <span class="lang-switch__current">{{ .Language.Label }}</span>
        {{- else }}
          <a href="{{ .Permalink }}" hreflang="{{ .Lang }}" hx-boost="false">{{ .Language.Label }}</a>
        {{- end }}
      {{- end }}
    </span>
  {{- end }}
  {{ with site.Params.nixstorepath }}
    <span class="store-path-row">
      <code class="store-path" title="This site was built by Nix">{{ . }}</code>
    </span>
  {{ end }}
</footer>