github.com/spotify/syslog-redirector-golang@v0.0.0-20140320174030-4859f03d829a/blog/template/article.tmpl (about)

     1  {{/* This file is combined with the root.tmpl to display a single article. */}}
     2  
     3  {{define "title"}}{{.Doc.Title}} - The Go Blog{{end}}
     4  {{define "content"}}
     5  	{{template "doc" .Doc}}
     6  	{{with .Doc.Related}}
     7  		<h2>Related articles</h2>
     8  		<ul>
     9  		{{range .}}
    10  			<li><a href="{{.Path}}">{{.Title}}</a></li>
    11  		{{end}}
    12  		</ul>
    13  	{{end}}
    14  {{end}}
    15