blob: cdca9aeaf2c78469627407a429f1537d3054fcc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{{ partial "head.html" . }}
<body class="theme-base-0b layout-reverse">
<main class="content container" role="main">
<section class="recent">
<h2>Recent Posts</h2>
<ul class="posts">
{{ range first 10 .Data.Pages }}
<li>
<a class="post-title" href="{{ .RelPermalink | replaceRE "/$" "" }}">{{ .Title }}</a>
<time class="post-date" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time>
</li>
{{ end }}
</ul>
</section>
</main>
{{ partial "sidebar.html" . }}
</body>
</html>
|