43 lines
1.7 KiB
HTML
43 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>GoWiki | {{.Title}}</title>
|
|
<link rel="stylesheet" type="text/css" href="/bootstrap.css" media="screen" integrity="sha256-NeLmQ7cX66J4MdtgGlG3O/TgvsSyP1b9WbaQtxYZUbQ="></link>
|
|
<link rel="stylesheet" type="text/css" href="/custom.css" media="screen" integrity="sha256-1LNAeuiM/rtsY1jIgLovUZ7HbYnOCkj3ZyailNA3rFQ="></link>
|
|
</head>
|
|
<body id="back-to-top">
|
|
<div class="navbar navbar-expand fixed-top navbar-dark bg-primary">
|
|
<div class="container">
|
|
<a href="/" class="navbar-brand">GoWiki</a>
|
|
<div class="collapse navbar-collapse">
|
|
{{template "menu" .}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<div class="proper-content">
|
|
{{if .Msg}}
|
|
<div class="alert alert-danger msg">
|
|
<h4>Error!</h4>
|
|
<p>{{.Msg}}</p>
|
|
</div>
|
|
{{end}}
|
|
{{template "body" .}}
|
|
</div>
|
|
<div class="push"></div>
|
|
<footer>
|
|
<div class="row">
|
|
<div class="col">
|
|
<ul class="list-unstyled">
|
|
<li class="float-md-right"><a href="#back-to-top">Back to top</a></li>
|
|
{{if .Login}}
|
|
<li><a href="/blacklist">Blacklist</a></li>
|
|
{{end}}
|
|
</ul>
|
|
<p>© GoWiki {{.Version}} Request: <strong>{{.Time}}ms</strong></p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|