digital_art.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {{ define "digital_art.html" }}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <html lang="en">
  5. <head>
  6. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel="stylesheet" href="/api/v1/style/bootstrap.min.css">
  9. <link rel="stylesheet" href="/api/v1/style/mdb/mdb.min.css">
  10. <link rel="stylesheet" href="/api/v1/cdn/custom.css">
  11. </head>
  12. <body style="background-color: rgb(56, 56, 56);">
  13. <div id="main">
  14. {{ template "navigation.html" .navigation }}
  15. <div class="container-fluid row">
  16. {{ range .images }}
  17. <div class="col-sm hover-overlay" data-mdb-ripple-init data-mdb-ripple-color="light">
  18. <div class="col-auto">
  19. <div class="row position-relative shadow-lg p-3 m-3 rounded justify-content-center"
  20. style="width: 80vh; max-width: 95%; background-color: rgb(22, 22, 22);">
  21. {{ template "centered_image.html" . }}
  22. </div>
  23. </div>
  24. </div>
  25. {{ end }}
  26. </div>
  27. <div id="mySidenav" class="sidenav">
  28. <a href="javascript:void(0)" class="closebtn" onclick="closeNav()">&times;</a>
  29. {{ range .menu.MenuLinks }}
  30. <a href="{{ .MenuLink }}" style="font-family: monospace;">{{ .LinkText }}</a>
  31. {{ end }}
  32. </div>
  33. </div>
  34. <script type="text/javascript" src="/api/v1/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
  35. <script src="/api/v1/cdn/slide.js"></script>
  36. <script src="/api/v1/htmx/htmx.min.js"></script>
  37. <script src="/api/v1/htmx/json-enc.js"></script>
  38. </body>
  39. </html>
  40. {{ end }}