1
0
mirror of https://github.com/thebaer/squigglelog synced 2018-07-20 10:45:21 +00:00
squigglelog/templates/log.html
2015-01-27 21:35:07 -05:00

10 lines
135 B
HTML

{{define "log"}}
<div id="squigglelog">
{{range .}}
<hr />
<h3>{{.Date}}</h3>
<p>{{printf "%s" .Body}}</p>
{{end}}
</div>
{{end}}