포스트 삭제 링크 추가
마지막으로 Index 페이지의 포스트 목록에서 각 포스트를 삭제하기 위한 버튼을 추가해 보자.
▼ app/views/Post/Index.html
...
<tbody> {{range .posts}} <tr> <th scope="row">{{.Id}}</th> <td>{{.Title}}</td> <td><time>{{.CreatedAt}}</time></td> <td><time>{{.UpdatedAt}}</time></td> <td><a href="{{url "Post.Show" .Id}}">Show</a></td> <td><a href="{{url "Post.Edit" .Id}}">Edit</a></td> <td><a href="{{url "Post.Destroy" .Id}}">Destroy</a></td> </tr> {{end}} </tbody>
...
http://localhost:9000/posts게 접속하여 포스트 삭제 기능을 확인해 보자.

