mirror of
https://github.com/thebaer/squigglelog
synced 2018-07-20 10:45:21 +00:00
10 lines
135 B
HTML
10 lines
135 B
HTML
|
{{define "log"}}
|
||
|
<div id="squigglelog">
|
||
|
{{range .}}
|
||
|
<hr />
|
||
|
<h3>{{.Date}}</h3>
|
||
|
<p>{{printf "%s" .Body}}</p>
|
||
|
{{end}}
|
||
|
</div>
|
||
|
{{end}}
|