aboutsummaryrefslogtreecommitdiff
path: root/template/index.tmpl
blob: 0d3c0897f46bae936aefa0658eb3ac818305ad09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{/* This file is combined with the root.tmpl to display the blog index. */}}

{{define "title"}}Article index - The Go Blog{{end}}
{{define "content"}}

  <h1 class="title">Article index</h1>
  
  {{range .Data}}
  <p class="blogtitle">
    <a href="{{.Path}}">{{.Title}}</a><br>
    <span class="date">{{.Time.Format "2 January 2006"}}</span><br>
    {{with .Tags}}<span class="tags">{{range .}}{{.}} {{end}}</span>{{end}}
  </p>
  {{end}}

{{end}}