From 2ca7344203eb1fb27f5a1ef992f8d52f14072d21 Mon Sep 17 00:00:00 2001 From: William Golden Date: Wed, 16 Oct 2013 22:16:40 -0500 Subject: [PATCH] Added page template to be compatible with pull #1139. --- page.hbs | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 page.hbs diff --git a/page.hbs b/page.hbs new file mode 100644 index 0000000..60f148e --- /dev/null +++ b/page.hbs @@ -0,0 +1,37 @@ +{{!< default}} + +{{! The comment above "< default" means - insert everything in this file into + the {body} of the default.hbs template, which contains our header/footer. }} + +
+ +
+ + {{! Each post has the blog logo at the top, with a link back to the home page }} +
+ +
+ + {{! Everything inside the #post tags pulls data from the post }} + {{#post}} + + {{! Everything below outputs content of the the post which has been published }} + + +

{{{title}}}

+ +
+ {{content}} +
+ + {{/post}} + +
+ +