postContent.tmpl.html 278 B

12345678910
  1. {{ define "postContent" }} {{ if .Image }}
  2. <img src="data:image/png;base64,{{ .Image }}" alt="anon-image" width="180" />
  3. {{ end }}
  4. <h2>
  5. {{ .AuthorId }} - {{ defaultToVal .AuthorName }} - {{ dateTimeToString
  6. .CreatedAt }}
  7. </h2>
  8. <blockquote>{{ .Body }}</blockquote>
  9. {{ end }}