post_options.html 578 B

123456789101112131415
  1. {{ define "post_options" }}
  2. <div class="container">
  3. <div class="row">
  4. <div class="col">
  5. <button class="btn-primary" hx-delete="{{ .Link }}" hx-swap="innerHTML" scope="row" style="color: white; height: fit-content; font-size: larger; font-family: monospace;">Delete</button>
  6. </div>
  7. <div class="col">
  8. <button class="btn-primary" hx-get="{{ .Link }}" hx-target="#main" scope="row" style="color: white; height: fit-content; font-size: larger; font-family: monospace;">Modify</button>
  9. </div>
  10. </div>
  11. </div>
  12. {{ end }}