2018-02-17 19:21:22 -08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2018-04-23 14:15:20 -03:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2019-12-06 20:03:37 -08:00
|
|
|
{{with .board -}}
|
|
|
|
{{with $.op -}}
|
|
|
|
{{if ne $.op.Subject "" -}}<title>/{{$.board.Dir}}/ - {{truncateString $.op.Subject 20 true}}</title>
|
|
|
|
{{- else if ne $.op.MessageHTML "" -}}<title>/{{$.board.Dir}}/ - {{truncateString $.op.MessageText 20 true}}</title>
|
|
|
|
{{- else}}<title>/{{$.board.Dir}}/ - #{{$.op.ID}}</title>{{end}}
|
|
|
|
{{- else}}<title>/{{$.board.Dir}}/ - {{$.board.Title}}</title>{{end}}
|
|
|
|
{{- else}}<title>{{.config.SiteName}}</title>{{end}}
|
2021-07-11 11:51:29 -07:00
|
|
|
<link rel="stylesheet" href="{{.config.WebRoot}}css/global.css" />
|
|
|
|
<link id="theme" rel="stylesheet" href="{{.config.WebRoot}}css/{{.config.DefaultStyle}}" />
|
|
|
|
<link rel="shortcut icon" href="{{.config.WebRoot}}favicon.png">
|
|
|
|
<script type="text/javascript" src="{{$.config.WebRoot}}js/consts.js"></script>
|
|
|
|
<script type="text/javascript" src="{{$.config.WebRoot}}js/gochan.js"></script>
|
2018-02-17 19:21:22 -08:00
|
|
|
</head>
|
|
|
|
<body>
|
2019-12-06 20:03:37 -08:00
|
|
|
<div id="topbar">
|
2021-07-11 11:51:29 -07:00
|
|
|
{{range $i, $board := .boards}}<a href="{{$.config.WebRoot}}{{$board.Dir}}/" class="topbar-item">/{{$board.Dir}}/</a>{{end}}
|
2019-12-06 20:03:37 -08:00
|
|
|
</div>
|