diff options
Diffstat (limited to 'templates/show_post.html')
-rw-r--r-- | templates/show_post.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/show_post.html b/templates/show_post.html new file mode 100644 index 0000000..5a7d806 --- /dev/null +++ b/templates/show_post.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> + <head> + <title>{{ post.title }}</title> + </head> + <body> + <article class="post-teaser"> + <header> + <h1>{{ post.title }}</h1> + <div class="post-actions"> + Edit | Publish | Delete + </div> + </header> + <section class="teaser"> + {{ post.body }} + </section> + </article> + </body> +</html> |