blob: 01c6e929a850b13c0724b205c5d03dc0c103dbec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{{ partial "head.html" . }}
<main class="index">
<section class="article-list">
<div>
<h1 class="text-center">{{$.Title}}</h1>
<nav class="text-center">
<a href="https://git.vineetk.net/">Git</a>
</nav>
{{ range (where .Site.RegularPages "Section" "blog") }}
<div class="article">
<span class="date">{{.Date.Format "2006-01-02"}}
<a href="{{.Permalink}}">{{.Title}}</a></span>
</div>
{{ end }}
</div>
</section>
</main>
|