blob: dc0587abe183b77e74735e83d235e0ba4b0f8764 (
plain)
1
2
3
4
5
6
7
8
9
|
{{ define "main" }}
<p>I write posts 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 }}
|