posts.html 453 B

123456789101112131415161718192021
  1. <html>
  2. <head>
  3. <title>Coursera/Go/Db/MySQL</title>
  4. <style>
  5. .buttons {text-align:right;}
  6. body {width:400px; margin: 10px auto 0px auto;}
  7. .item textarea {width:100%; height: 20px; border:none;}
  8. </style>
  9. </head>
  10. <body>
  11. <div class="container">
  12. <h1>Posts</h1>
  13. {{range .Posts}}
  14. <div class="row">
  15. <div class="col-8">{{.Title}}</div>
  16. <div class="col-4"><a href="/items/{{.Id}}">Edit</button></div>
  17. </div>
  18. {{end}}
  19. </div>
  20. </body>
  21. </html>