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.

masthead.html · 23 lines · 893 BHTML Blame HistoryRaw
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 20h ago1{{- $signal := partial "signal.html" .RelPermalink -}}
2<header class="masthead column rise">
Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 15h ago3 <p class="masthead__title"><a href="{{ "/" | relLangURL }}">{{ site.Title }}</a></p>
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 20h ago4 {{- if and .IsHome site.Params.profile }}
Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 15h ago5 <a class="masthead__about" href="#about">{{ i18n "about" }}</a>
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 20h ago6 {{- end }}
7 <div
8 class="masthead__signal"
9 aria-hidden="true"
10 title="sha256 of this page's URL, drawn — {{ $signal.hash }}"
11 >
12 <svg viewBox="0 0 1000 100" preserveAspectRatio="none" focusable="false">
13 <defs>
14 <linearGradient id="signal-ramp" x1="0" y1="0" x2="1" y2="0">
15 <stop class="signal-ramp__lead" offset="0" />
16 <stop class="signal-ramp__body" offset="0.24" />
17 <stop class="signal-ramp__tail" offset="1" />
18 </linearGradient>
19 </defs>
20 <path d="{{ $signal.path }}" pathLength="100" />
21 </svg>
22 </div>
23</header>