diff --git a/assets/images/default-avatar-rectangle.jpg b/assets/images/default-avatar-rectangle.jpg new file mode 100644 index 0000000..cd42e2e Binary files /dev/null and b/assets/images/default-avatar-rectangle.jpg differ diff --git a/assets/images/default-avatar-square-normal.jpg b/assets/images/default-avatar-square-normal.jpg new file mode 100644 index 0000000..6be5de4 Binary files /dev/null and b/assets/images/default-avatar-square-normal.jpg differ diff --git a/assets/images/default-avatar-square-small.jpg b/assets/images/default-avatar-square-small.jpg new file mode 100644 index 0000000..a94b476 Binary files /dev/null and b/assets/images/default-avatar-square-small.jpg differ diff --git a/error-404.hbs b/error-404.hbs index 6c0b5c3..54d0015 100644 --- a/error-404.hbs +++ b/error-404.hbs @@ -1,7 +1,7 @@ {{!< default}} {{!-- The header --}} -{{> header background=@site.cover_image}} +{{> header }}
diff --git a/index.hbs b/index.hbs index 30523fa..c026778 100644 --- a/index.hbs +++ b/index.hbs @@ -1,5 +1,4 @@ {{!< default}} -{{!-- Insert everything in this file into the {body} of the default.hbs template --}} {{!-- The header --}} {{> header background=@site.cover_image}} diff --git a/page-authors.hbs b/page-authors.hbs new file mode 100644 index 0000000..33678fa --- /dev/null +++ b/page-authors.hbs @@ -0,0 +1,68 @@ +{{!< default}} + +{{!-- The header --}} +{{> header }} + +{{#post}} +
+
+
+

{{title}}

+

{{excerpt}}

+
+
+
+
+ {{#get 'authors' limit='all' include='count.posts' order='count.posts desc'}} +
+ {{#foreach authors}} +
+ {{#if profile_image}} +
+ {{else}} +
+ {{/if}} + +

{{name}}

+
+
+ +

{{bio}}

+
+
+ + {{plural count.posts empty="No posts" singular="% post" plural="% posts"}} + + +
+
+
+ {{/foreach}} +
+ {{/get}} +
+
+
+{{/post}}