listing.html 1.0 KB

1234567891011121314151617181920
  1. {{ define "listing.html" }}
  2. <!DOCTYPE html>
  3. <html>
  4. <div class="row position-relative shadow-lg p-3 m-3 rounded justify-content-center"
  5. 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">{{ .Ident }}</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. <a href="/writing/{{ .Ident }}">
  16. <div class="mask" style="background-color: hsla(0, 0%, 98%, 0.2)"></div>
  17. </a>
  18. </div>
  19. </html>
  20. {{ end }}