mykiwi/mykiwi.blogpublic Fork 0
ab57bea17065e93abbaa8a8c288357475e5ba1b2
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 ab57bea17065e93abbaa8a8c288357475e5ba1b2 · Romain Gautier · 14h ago
masthead.html · 23 lines · 893 BHTML 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
{{- $signal := partial "signal.html" .RelPermalink -}}
<header class="masthead column rise">
  <p class="masthead__title"><a href="{{ "/" | relLangURL }}">{{ site.Title }}</a></p>
  {{- if and .IsHome site.Params.profile }}
    <a class="masthead__about" href="#about">{{ i18n "about" }}</a>
  {{- end }}
  <div
    class="masthead__signal"
    aria-hidden="true"
    title="sha256 of this page's URL, drawn — {{ $signal.hash }}"
  >
    <svg viewBox="0 0 1000 100" preserveAspectRatio="none" focusable="false">
      <defs>
        <linearGradient id="signal-ramp" x1="0" y1="0" x2="1" y2="0">
          <stop class="signal-ramp__lead" offset="0" />
          <stop class="signal-ramp__body" offset="0.24" />
          <stop class="signal-ramp__tail" offset="1" />
        </linearGradient>
      </defs>
      <path d="{{ $signal.path }}" pathLength="100" />
    </svg>
  </div>
</header>