blogpost.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {{ define "blogpost.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/style/bootstrap.min.css">
  8. <link rel="stylesheet" href="/api/v1/style/mdb/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. <div id="main">
  13. {{ template "navigation.html" .navigation }}
  14. <div class="container-fluid row">
  15. <div class="col"></div>
  16. <div class="col-auto p-3 m-3" style="max-width: 80vw;">
  17. <div class="row" style="background-color: rgb(22, 22, 22); color: white; height: fit-content; font-family: monospace; white-space: pre-wrap;">
  18. <p class="text-center">{{ .Ident }}</p>
  19. </div>
  20. <div class="row" style="background-color: rgb(22, 22, 22); color: white; height: fit-content; font-family: monospace; white-space: pre-wrap">
  21. <p class="text-left">{{ .Created }}</p>
  22. </div>
  23. <div class="row" style="background-color: rgb(22, 22, 22); color: white; height: fit-content; font-family: monospace; white-space: pre-wrap">
  24. <p class="text-left">{{ .Body }}</p>
  25. </div>
  26. </div>
  27. <div class="col"></div>
  28. </div>
  29. <div id="mySidenav" class="sidenav">
  30. <a href="javascript:void(0)" class="closebtn" onclick="closeNav()">&times;</a>
  31. {{ range .menu.MenuLinks }}
  32. <a href="{{ .MenuLink }}" style="font-family: monospace;">{{ .LinkText }}</a>
  33. {{ end }}
  34. </div>
  35. </div>
  36. <script type="text/javascript" src="/api/v1/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
  37. <script src="/api/v1/cdn/slide.js"></script>
  38. <script src="/api/v1/htmx/htmx.min.js"></script>
  39. <script src="/api/v1/htmx/json-enc.js"></script>
  40. </body>
  41. </html>
  42. {{ end }}