diff options
Diffstat (limited to 'templates/show_post.html')
-rw-r--r-- | templates/show_post.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/show_post.html b/templates/show_post.html index 5a7d806..31c2ca3 100644 --- a/templates/show_post.html +++ b/templates/show_post.html @@ -5,15 +5,15 @@ </head> <body> <article class="post-teaser"> + {{# post. }} <header> - <h1>{{ post.title }}</h1> - <div class="post-actions"> - Edit | Publish | Delete - </div> + <h1>{{ .title }}</h1> + {{> post_actions.html }} </header> <section class="teaser"> - {{ post.body }} + {{ .body }} </section> + {{/ post }} </article> </body> </html> |