github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/blog/template/home.tmpl (about)

     1  {{/* This file is combined with the root.tmpl to display the blog home page. */}}
     2  
     3  {{define "title"}}The Go Programming Language Blog{{end}}
     4  {{define "content"}}
     5  	{{range .Data}}
     6  		{{template "doc" .}}
     7  	{{end}}
     8  	<p>See the <a href="{{.BasePath}}/index">index</a> for more articles.
     9  {{end}}