admin.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {{ define "admin.html" }}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="stylesheet" href="/api/v1/cdn/bootstrap.min.css">
  8. <link rel="stylesheet" href="/api/v1/cdn/mdb.min.css">
  9. <link rel="stylesheet" href="/api/v1/cdn/custom.css">
  10. </head>
  11. <body style="background-color: rgb(56, 56, 56);
  12. background-image: url(/api/v1/images/blackandwhitedesign.jpg);
  13. background-repeat: no-repeat;
  14. background-size: cover;">
  15. <div id="main">
  16. {{ template "navigation.html" .navigation }}
  17. <div class="container-fluid row">
  18. {{ range $key, $value := .Tables }}
  19. <div class="col">
  20. <div class="col container h-2 p-2" style="background-color: rgb(22, 22, 22); color: white; height: fit-content; font-size: larger; font-family: monospace;">{{ $key }}
  21. </div>
  22. <table class="table table-dark table-hover">
  23. <thead>
  24. </thead>
  25. <tbody>
  26. {{ range $value }}
  27. <tr>
  28. <th scope="row" style="color: white; height: fit-content; font-size: larger; font-family: monospace;">
  29. <a href="{{ .Link }}">{{ .DisplayName }}</a></th>
  30. </tr>
  31. {{ end }}
  32. </tbody>
  33. </table>
  34. </div>
  35. {{ end }}
  36. </div>
  37. <div id="mySidenav" class="sidenav">
  38. <a href="javascript:void(0)" class="closebtn" onclick="closeNav()">&times;</a>
  39. {{ range .menu.MenuLinks }}
  40. <a href="{{ .MenuLink }}" style="font-family: monospace;">{{ .LinkText }}</a>
  41. {{ end }}
  42. </div>
  43. </div>
  44. <script type="text/javascript" src="/api/v1/cdn/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
  45. <script src="/api/v1/cdn/htmx.min.js"></script>
  46. <script src="/api/v1/cdn/json-enc.js"></script>
  47. </body>
  48. </html>
  49. {{ end }}