diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2017-11-16 17:20:46 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2017-11-16 17:20:46 +0100 |
commit | 44c10f9710632a72427120ccdb9f16ad146574b4 (patch) | |
tree | 66de95370195b352c5e7f993a3e3a65061845fc9 /templates/post_teaser.html | |
parent | 114b777b806f793ebfe21895830bae99f524c9d5 (diff) | |
download | rocket-blog-44c10f9710632a72427120ccdb9f16ad146574b4.tar.gz rocket-blog-44c10f9710632a72427120ccdb9f16ad146574b4.tar.bz2 rocket-blog-44c10f9710632a72427120ccdb9f16ad146574b4.zip |
Render post teasers using partial.
Diffstat (limited to 'templates/post_teaser.html')
-rw-r--r-- | templates/post_teaser.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/post_teaser.html b/templates/post_teaser.html new file mode 100644 index 0000000..5198400 --- /dev/null +++ b/templates/post_teaser.html @@ -0,0 +1,8 @@ +<article class="post-teaser"> + <header> + <h1>{{ .title }}</h1> + </header> + <section class="teaser"> + {{ .body }} + </section> +</article>
\ No newline at end of file |