25 lines
766 B
HTML
25 lines
766 B
HTML
{{ define "main" }}
|
|
<article class="post">
|
|
<header class="post-header">
|
|
<h1 class="post-title">{{ .Title }}</h1>
|
|
<div class="post-meta">
|
|
<time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time>
|
|
{{ with .Params.tags }}
|
|
· {{ range . }}<span class="tag">#{{ . }}</span>{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</header>
|
|
<div class="content">{{ .Content }}</div>
|
|
<nav class="post-nav">
|
|
{{ with .PrevInSection }}
|
|
<a class="post-nav__prev" href="{{ .RelPermalink }}">← {{ .Title }}</a>
|
|
{{ end }}
|
|
{{ with .NextInSection }}
|
|
<a class="post-nav__next" href="{{ .RelPermalink }}">{{ .Title }} →</a>
|
|
{{ end }}
|
|
</nav>
|
|
</article>
|
|
{{ end }}
|
|
|
|
|