38 lines
1.0 KiB
HTML
38 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{.Title}}</title>
|
|
<meta name="Description" Content="{{.Desc}}">
|
|
|
|
<link href="/assets/style.css" rel="stylesheet">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon-16x16.png">
|
|
<link rel="manifest" href="/assets/img/site.webmanifest">
|
|
<script src="/assets/gallery.js"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
<div class="index">
|
|
<table><thead>
|
|
<tr>
|
|
<th>Gallery</th>
|
|
<th>Images</th>
|
|
</tr>
|
|
{{range .Galleries}}
|
|
<tr>
|
|
<td><a href="{{.Name}}">{{.Path}}</a></th>
|
|
<td><p>{{.Length}}</p></th>
|
|
</tr>
|
|
{{end}}
|
|
</thead></table>
|
|
</div>
|
|
<!--
|
|
<footer>
|
|
<a href="/random">Random</a> <a href="/">Home</a> <a href="javascript:refreshTop();">Renew</a>
|
|
</footer>
|
|
-->
|
|
</body>
|
|
</html>
|