diff --git a/assets/css/screen.css b/assets/css/screen.css
index 7e68a8c..346a725 100644
--- a/assets/css/screen.css
+++ b/assets/css/screen.css
@@ -723,6 +723,10 @@ margin on the iframe, cause it breaks stuff. */
color: #9EABB3;
}
+.author h4 a {
+ text-decoration: none;
+}
+
.author-meta li {
float: left;
margin-left: 10px; /* space to the left of the bullet */
diff --git a/author.hbs b/author.hbs
new file mode 100644
index 0000000..720a889
--- /dev/null
+++ b/author.hbs
@@ -0,0 +1,39 @@
+{{!< default}}
+
+{{! The comment above "< default" means - insert everything in this file into
+ the {body} of the default.hbs template, which contains our header/footer. }}
+
+{{! Everything inside the #author tags pulls data from the author }}
+{{#author}}
+
+
+
+
{{name}}
+
{{bio}}
+
+
+
+{{/author}}
+
+{{! The main content area on the homepage }}
+
+
+ {{! Each post will be output using this markup }}
+ {{#foreach posts}}
+
+
+
+ {{tags prefix="on "}}
+
+
+
+
+ {{/foreach}}
+
+ {{!! After all the posts, we have the previous/next pagination links }}
+ {{pagination}}
+
+
\ No newline at end of file
diff --git a/index.hbs b/index.hbs
index 3b9f70c..842a4d9 100644
--- a/index.hbs
+++ b/index.hbs
@@ -22,7 +22,7 @@
- {{tags prefix="on "}}
+ {{author}}, {{tags prefix="on "}}