A simple blog generator for your ~
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

log.html 135 B

123456789
  1. {{define "log"}}
  2. <div id="squigglelog">
  3. {{range .}}
  4. <hr />
  5. <h3>{{.Date}}</h3>
  6. <p>{{printf "%s" .Body}}</p>
  7. {{end}}
  8. </div>
  9. {{end}}