mirror of
https://github.com/rls-moe/nyx
synced 2024-11-14 22:12:24 +00:00
30 lines
931 B
HTML
30 lines
931 B
HTML
|
<!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}} Boards</title>
|
||
|
<link rel="stylesheet" href="/@/style.css">
|
||
|
<link rel="stylesheet" href="/@/custom.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="banner logo">
|
||
|
<div class="site title"><h1>{{.Config.Site.Title}}</h1></div>
|
||
|
<div class="site description"><h2>{{.Config.Site.Description}}</h2></div>
|
||
|
</div>
|
||
|
<div class="boardlist">
|
||
|
<div class="boardtitle">
|
||
|
<h3>Boards</h3>
|
||
|
</div>
|
||
|
<div class="boardlist">
|
||
|
<ul>
|
||
|
{{range .Boards}}
|
||
|
<li>
|
||
|
<a class="boardlink" href="/{{ .ShortName}}/board.html">{{.ShortName}}: {{.LongName}}</a>
|
||
|
</li>
|
||
|
{{end}}
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|