blog.html (438B)
1 <!DOCTYPE html> 2 <head> 3 <title>{{ .Page.Title }}</title> 4 <link rel="stylesheet" href="/style.css"> 5 </head> 6 {{template "top.html"}} 7 <h1>{{ .Title }}</h1> 8 {{ .Content }} 9 <h2>Posts</h2> 10 <ul> 11 {{ range .Pages }} 12 {{ if HasPrefix .Filepath "content/blog" }} 13 <li>{{ .DatePublished.Format "2006-01-02" }} - <a href="{{ .Permalink }}">{{ .Title }}</a></li> 14 {{ end }} 15 {{ end }} 16 </ul> 17 {{template "bottom.html"}}