mykiwi/mykiwi.blogpublic Fork 0
93492015ccd3091bb33a32f13ef4c29d91cfec9c
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 93492015ccd3091bb33a32f13ef4c29d91cfec9c · Romain Gautier · 19h ago
single.html · 17 lines · 545 BHTML Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
{{ define "main" }}
<article class="column">
  <header class="post-header rise">
    <p class="post-kicker">
      {{ with .Date }}
        <time datetime="{{ .Format "2006-01-02T15:04:05Z07:00" }}">{{ .Format "2006-01-02" }}</time>
        <span class="sep" aria-hidden="true">&middot;</span>
      {{ end }}
      <span>{{ i18n "minRead" (dict "Count" .ReadingTime) }}</span>
    </p>
    <h1 class="post-title">{{ .Title }}</h1>
    <hr class="post-rule">
  </header>

  <div class="post-body prose">{{ .Content }}</div>
</article>
{{ end }}