Index 페이지에 각 포스트 보기 링크 추가
마지막으로 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> </tr> {{end}} </tbody>
...
http://localhost:9000/posts로 접속하여 포스트 상세 보기 기능을 확인해 보자.

