diff --git a/author.hbs b/author.hbs index b1356e5..b94cdfb 100644 --- a/author.hbs +++ b/author.hbs @@ -2,27 +2,31 @@ {{! The tag above means - insert everything in this file into the {body} of the default.hbs template }} {{! The big featured header }} -
- -
-
- {{#if author.image}} -
-
-
- {{/if}} -

{{author.name}}

-

{{author.bio}}

-
- {{#if author.location}}{{author.location}}{{/if}} - {{#if author.website}}{{author.website}}{{/if}} - {{plural pagination.total empty='No posts' singular='% post' plural='% posts'}} -
-
+{{! Everything inside the #author tags pulls data from the author }} +{{#author}} +
+ +
+ +
+ {{#if image}} +
+
+
+ {{/if}} +

{{name}}

+

{{bio}}

+
+ {{#if location}}{{location}}{{/if}} + {{#if website}}{{website}}{{/if}} + {{plural ../pagination.total empty='No posts' singular='% post' plural='% posts'}} +
+
+{{/author}} {{! The main content area on the homepage }}
diff --git a/page.hbs b/page.hbs index 65cb102..e15d599 100644 --- a/page.hbs +++ b/page.hbs @@ -11,9 +11,10 @@
+ {{! Everything inside the #post tags pulls data from the post }} {{#post}} -

{{{title}}}

+

{{title}}

{{content}} diff --git a/post.hbs b/post.hbs index 1e1610a..3d19770 100644 --- a/post.hbs +++ b/post.hbs @@ -15,9 +15,9 @@ {{#post}}
-

{{{title}}}

+

{{title}}

@@ -26,9 +26,9 @@