blob: 7f79249e2159e59ac028f2a83c8a8b720f8f3bc8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{{ define "main" }}
<header class="blog__header">
<a href="/">/~/</a>blog/
</header>
<article>
<ul class="posts">
{{ $pages := .Pages }}
{{ range $pages }}
<li class="post">
<time class="post__date">
<time class= "post__date_short">{{ .Date.Format "02.01.06" }}/</time>
<time class= "post__date_long">{{ .Date.Format "2006.01.02" }}/</time>
</time>
<a class="post__link" href="{{ .RelPermalink }}">
{{ .Title }}
</a>
</li>
{{ end }}
</ul>
</article>
{{ end }}
|