2021-01-31 17:53:32 +10:30
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
|
2021-02-02 22:09:18 +10:30
|
|
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
2021-01-31 17:53:32 +10:30
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.bd-placeholder-img {
|
|
|
|
font-size: 1.125rem;
|
|
|
|
text-anchor: middle;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.bd-placeholder-img-lg {
|
|
|
|
font-size: 3.5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<!-- Custom styles for this template -->
|
|
|
|
<link href="/dau.css" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body class="text-center">
|
|
|
|
|
|
|
|
<div class="DAU-container d-flex w-100 h-100 p-3 mx-auto flex-column">
|
|
|
|
<header class="masthead mb-auto">
|
|
|
|
<div class="inner">
|
|
|
|
<h3 class="masthead-brand">discord-auto-upload ({{.Version}})</h3>
|
|
|
|
<nav class="nav nav-masthead justify-content-center">
|
|
|
|
<a class="nav-link {{ if eq .Path "index.html"}} active {{ end }}" href="/">Home</a>
|
|
|
|
<a class="nav-link {{ if eq .Path "config.html"}} active {{ end }}" href="/config.html">Config</a>
|
2021-06-02 23:42:29 +09:30
|
|
|
<a class="nav-link {{ if eq .Path "logs.html"}} active {{ end }}" href="/logs.html">Logs</a>
|
2021-01-31 17:53:32 +10:30
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
{{.Body}}
|
|
|
|
|
|
|
|
<footer class="mastfoot mt-auto">
|
|
|
|
<div class="inner">
|
|
|
|
<!-- <p>DAU template for <a href="https://getbootstrap.com/">Bootstrap</a>, by <a href="https://twitter.com/mdo">@mdo</a>.</p> -->
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|