aboutsummaryrefslogtreecommitdiff
path: root/template/home.tmpl
blob: cda32d744127149d595ac954760bfc6de67e2fda (plain)
1
2
3
4
5
6
7
8
9
{{/* This file is combined with the root.tmpl to display the blog home page. */}}

{{define "title"}}The Go Programming Language Blog{{end}}
{{define "content"}}
	{{range .Data}}
		{{template "doc" .}}
	{{end}}
	<p>See the <a href="/index">index</a> for more articles.
{{end}}