aboutsummaryrefslogtreecommitdiff
path: root/template/home.tmpl
blob: 13aaef27407e854b6d82fce404cd1941c1d8d9b7 (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="{{.BasePath}}/index">index</a> for more articles.
{{end}}