board.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. {{ template "head" }}
  5. <link rel="stylesheet" href="/static/css/index.css" />
  6. <link rel="stylesheet" href="/static/css/board.css" />
  7. <title>{{ .siteTitle }} - {{ .board }}</title>
  8. </head>
  9. <body>
  10. <div id="thread-list">
  11. <h1>You are lurking @ /{{ .board }}/</h1>
  12. <a href="/">Go home!</a>
  13. {{ template "newThreadForm" . }}
  14. <ul>
  15. {{ range .threads }}
  16. <li class="threadHead">
  17. <div class="threadHeadBody">
  18. <img
  19. src="data:image/png;base64,{{ .Image }}"
  20. alt="anon-image"
  21. width="180"
  22. />
  23. <h2>
  24. {{ .AuthorId }} - {{ .AuthorName }} - {{ dateTimeToString
  25. .CreatedAt }}
  26. </h2>
  27. <h3>
  28. {{ .Title }}
  29. <a href="/b/{{ $.board }}/{{ idToString .ID }}">[Reply]</a>
  30. </h3>
  31. <blockquote>{{ .Body }}</blockquote>
  32. </div>
  33. <ul class="replyList">
  34. {{ range .Posts }}
  35. <li>{{ template "postContent" . }}</li>
  36. {{ end }}
  37. </ul>
  38. </li>
  39. {{ end }}
  40. </ul>
  41. </div>
  42. </body>
  43. </html>