Initial git tracking
This commit is contained in:
18
templates/blog.html
Normal file
18
templates/blog.html
Normal file
@ -0,0 +1,18 @@
|
||||
{{ template "_style.html" .}}
|
||||
{{ template "_header.html" .}}
|
||||
|
||||
|
||||
<h1>{{ .Title }}</h1>
|
||||
|
||||
<ul>
|
||||
{{ range $.Posts }}
|
||||
<li>
|
||||
<a href="{{ .Permalink }}">{{ .Title }}</a><br>
|
||||
<small>{{ .DatePublished.Format "January 2, 2006" }}</small>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
|
||||
{{ .Content }}
|
||||
|
||||
{{ template "_footer.html" .}}
|
Reference in New Issue
Block a user