threadHeadReplyableContent.tmpl.html 404 B

12345678910111213
  1. {{ define "threadHeadReplyableContent" }} {{ if .Image }}
  2. <img src="data:image/png;base64,{{ .Image }}" alt="anon-image" width="180" />
  3. {{ end }}
  4. <h2>{{ .AuthorId }} - {{ .AuthorName }} - {{ dateTimeToString .CreatedAt }}</h2>
  5. <h3>
  6. {{ .Title }}
  7. <a href="/{{ .board }}/{{ idToString .ID }}">[Reply]</a>
  8. <!-- $.board was used on href
  9. before -->
  10. </h3>
  11. <blockquote>{{ .Body }}</blockquote>
  12. {{ end }}