From 9ca4564cb2ffc067fd2dfc7da297b13a67f033f4 Mon Sep 17 00:00:00 2001 From: John O'Nolan Date: Sat, 10 Aug 2013 14:36:03 +0200 Subject: [PATCH] Removed concept of partials from Casper. For now. --- index.hbs | 13 ++++++------- partials/full-post.hbs | 17 ----------------- partials/list-post.hbs | 6 ------ post.hbs | 20 +++++++++++++++++++- 4 files changed, 25 insertions(+), 31 deletions(-) delete mode 100644 partials/full-post.hbs delete mode 100644 partials/list-post.hbs diff --git a/index.hbs b/index.hbs index f223bf9..db2de29 100644 --- a/index.hbs +++ b/index.hbs @@ -2,13 +2,12 @@
{{pagination}} diff --git a/partials/full-post.hbs b/partials/full-post.hbs deleted file mode 100644 index d8570d1..0000000 --- a/partials/full-post.hbs +++ /dev/null @@ -1,17 +0,0 @@ -
- {{#if image}} -
- ghostpost -
- {{/if}} -
-
-

{{title}}

- -
- -
- {{content}} -
-
-
diff --git a/partials/list-post.hbs b/partials/list-post.hbs deleted file mode 100644 index dc205a4..0000000 --- a/partials/list-post.hbs +++ /dev/null @@ -1,6 +0,0 @@ -
  • -
    -

    {{title}}

    - -
    -
  • \ No newline at end of file diff --git a/post.hbs b/post.hbs index d2668cc..b9bb418 100644 --- a/post.hbs +++ b/post.hbs @@ -1,6 +1,24 @@ {{!< default}}
    {{#post}} - {{> full-post}} + +
    + {{#if image}} +
    + ghostpost +
    + {{/if}} +
    +
    +

    {{title}}

    + +
    + +
    + {{content}} +
    +
    +
    + {{/post}}
    \ No newline at end of file