writing.html 1.2 KB

12345678910111213141516171819202122
  1. {{ define "writing" }}
  2. <div class="container-fluid row">
  3. {{ range . }}
  4. <div class="col hover-overlay" data-mdb-ripple-init data-mdb-ripple-color="light">
  5. <div class="row position-relative shadow-lg p-3 m-3 rounded justify-content-center" style="width: 80vh; max-width: 95%; background-color: rgb(22, 22, 22);">
  6. <div class="row" style="background-color: rgb(22, 22, 22); color: white; height: fit-content;font-family: monospace;">
  7. <p class="text-center">{{ .Title }}</p>
  8. </div>
  9. <div class="row" style="background-color: rgb(22, 22, 22); color: white; height: fit-content; font-family: monospace;">
  10. <p class="text-left">{{ .Created }}</p>
  11. </div>
  12. <div class="row" style="background-color: rgb(22, 22, 22); color: white; height: fit-content; font-family: monospace;">
  13. <p class="text-left">{{ .Sample }}</p>
  14. </div>
  15. <button hx-get="/writing/{{ .Ident }}" hx-target="#main">
  16. <div class="mask" style="background-color: hsla(0, 0%, 98%, 0.2)"></div>
  17. </button>
  18. </div>
  19. </div>
  20. {{ end }}
  21. </div>
  22. {{ end }}