mykiwi/mykiwi.blogpublic Fork 0
ca8b900c61818e412fa536a0f92084227bbf5f4c
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.

Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 · on ca8b900c61818e412fa536a0f92084227bbf5f4c · Romain Gautier · 21h ago
single.html · 17 lines · 524 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>{{ .ReadingTime }} min read</span>
    </p>
    <h1 class="post-title">{{ .Title }}</h1>
    <hr class="post-rule">
  </header>

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