blob: e3be933f7fed5a4c7a827f60c40e1c4226919fb6 (
plain)
1
2
3
4
5
6
7
8
9
|
{{ define "main" }}
<p>I write about programming and Linux topics that are of interest to me.</p>
<p>Subscribe to the blog by using this <a href="{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}">RSS link</a>.</p>
<ul>
{{ range (where .Data.Pages "Type" "posts") }}
<li>{{ .Date.Format "2006-01-01" }} - <a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}
|