listing.html 1.1 KB

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