{{ define "main" }} {{ if (isset .Params "excerpt") }}
{{ .Params.excerpt | safeHTML }}
{{ end }}
{{ if eq .Params.Version 0 }}

Danger

This is a work in progress module and might not work as expected. Feel free to file a bug report on the github page.
{{ end }}
{{ .Content }} {{ if (isset .Params "todo") }}

TODO

{{ range .Params.todo }} {{ end }}
Date Title Description
{{ dateFormat "2 Jan 2006" .date }}{{ .title }}{{ .description }}
{{ end }} {{ if (isset .Params "history") }}

History

{{ range .Params.history }} {{ end }}
Rev. Date Description
{{ .revision }}{{ dateFormat "2 Jan 2006" .date }}{{ .description }}
{{ end }} {{ if (isset .Params "references") }}

References

    {{ range .Params.references }}
  • {{ .title }} {{ .description }}
  • {{ end }}
{{ end }}
{{ end }}