마지막으로 app/views/Comment/_comment.html 뷰에 댓글 삭제 버튼을 추가하자.
▼ app/views/Comment/_comment.html
{{$post := .post}} {{range .post.Comments}} <p> <mark> <b>{{.Commenter}}:</b> </mark> {{.Body}} <small> ({{formatDate .CreatedAt}}) </small> <a href="{{url "Comment.Destroy" $post.Id .Id}}">Destroy</a> </p> {{end}}
이제 기본 기능을 모두 갖춘 블로그가 완성됐다.

