12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- {{ template "head" }}
- <link rel="stylesheet" href="/static/css/index.css" />
- <link rel="stylesheet" href="/static/css/board.css" />
- <link rel="stylesheet" href="/static/css/thread.css" />
- <title>{{ .siteTitle }} - {{ .board }} - {{ .thread.AuthorId }}</title>
- </head>
- <body>
- <h1>You are lurking @ /{{ .board }}/</h1>
- <a href="/b/{{ .board }}">Return</a>
- {{ template "newPostForm" . }} {{ with .thread }}
- <div class="threadHead">
- <div class="threadHeadBody">{{ template "threadHeadContent" . }}</div>
- <ul class="replyList">
- {{ range .Posts }}
- <li>{{ template "postContent" . }}</li>
- {{ end }}
- </ul>
- </div>
- {{ end }}
- </body>
- </html>
|