2017-03-12 19:37:53 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>{{.Config.Site.Title}} - /{{.Board.ShortName}}/</title>
|
|
|
|
<link rel="stylesheet" href="/@/style.css">
|
|
|
|
<link rel="stylesheet" href="/@/custom.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="banner logo">
|
|
|
|
<div class="site title"><h1><span class="reflink"><a href="/{{.Board.ShortName}}/board.html">/{{.Board.ShortName}}/</a></span></h1></div>
|
|
|
|
<div class="site description"><h2>{{.Board.LongName}}</h2></div>
|
|
|
|
</div>
|
|
|
|
{{ $boardlink := .Board.ShortName }}
|
2017-03-13 15:04:00 +00:00
|
|
|
{{ if .Session }}
|
|
|
|
{{ if eq (.Session.CAttr "mode") "admin" }}
|
|
|
|
Logged in as Admin
|
|
|
|
{{ end }}
|
|
|
|
{{ if eq (.Session.CAttr "mode") "mod" }}
|
|
|
|
Logged in as Mod for {{ .Session.CAttr "board" }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2017-03-12 19:37:53 +00:00
|
|
|
<hr />
|
2017-03-13 15:04:00 +00:00
|
|
|
{{ template "thread/post" . }}
|
2017-03-12 19:37:53 +00:00
|
|
|
<div class="postlists">
|
2017-03-13 15:04:00 +00:00
|
|
|
{{ $board := .Board }}
|
|
|
|
{{ $csrf := .CSRFToken }}
|
|
|
|
{{ $session := .Session }}
|
2017-03-12 19:37:53 +00:00
|
|
|
{{range .Threads}}
|
2017-03-13 15:04:00 +00:00
|
|
|
{{ template "thread/postlists" dict "Thread" . "Board" $board "CSRFToken" $csrf "Session" $session }}
|
2017-03-12 19:37:53 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|