44 lines
1.9 KiB
HTML
44 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>DocStore | {{.Title}}</title>
|
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" integrity="sha256-bgotk/IPq4Yvt6s8AQGPTM5ZjPjQ6rrBRa2EyxpnFSc="></link>
|
|
<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-iYnSZSZLepCN7vabI6deUcbcw+1UNCmKhXlJ75O+S6Y="></link>
|
|
<meta name="theme-color" content="#375a7f">
|
|
<meta name="description" content="{{.Title}}">
|
|
</head>
|
|
<body id="top">
|
|
<div class="navbar navbar-expand fixed-top navbar-dark bg-primary">
|
|
<div class="container">
|
|
<a href="/" class="navbar-brand">DocStore</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="#top">Back to top</a></li>
|
|
<li><a href="https://git.giftfish.de/ston1th/docstore">Git</a></li>
|
|
</ul>
|
|
<p>© DocStore {{.Version}} Request: <strong>{{.Time}}ms</strong></p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|