thread.html 765 B

12345678910111213141516171819202122232425
  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. <link rel="stylesheet" href="/static/css/thread.css" />
  8. <title>{{ .siteTitle }} - {{ .board }} - {{ .thread.AuthorId }}</title>
  9. </head>
  10. <body>
  11. <h1>You are lurking @ /{{ .board }}/</h1>
  12. <a href="/b/{{ .board }}">Return</a>
  13. {{ template "newPostForm" . }} {{ with .thread }}
  14. <div class="threadHead">
  15. <div class="threadHeadBody">{{ template "threadHeadContent" . }}</div>
  16. <ul class="replyList">
  17. {{ range .Posts }}
  18. <li>{{ template "postContent" . }}</li>
  19. {{ end }}
  20. </ul>
  21. </div>
  22. {{ end }}
  23. </body>
  24. </html>