12345678910111213 |
- {{ define "threadHeadReplyableContent" }} {{ if .Image }}
- <img src="data:image/png;base64,{{ .Image }}" alt="anon-image" width="180" />
- {{ end }}
- <h2>{{ .AuthorId }} - {{ .AuthorName }} - {{ dateTimeToString .CreatedAt }}</h2>
- <h3>
- {{ .Title }}
- <a href="/{{ .board }}/{{ idToString .ID }}">[Reply]</a>
- <!-- $.board was used on href
- before -->
- </h3>
- <blockquote>{{ .Body }}</blockquote>
- {{ end }}
|