diff --git a/system/htmly.php b/system/htmly.php
index b05fc90..0cf8895 100644
--- a/system/htmly.php
+++ b/system/htmly.php
@@ -280,6 +280,7 @@ get('/author/:name', function ($name) {
'posts' => null,
'about' => $author->about,
'name' => $author->name,
+ 'author' => $author,
'type' => 'is_profile',
'bodyclass' => 'in-profile author-' . $name,
'breadcrumb' => '' . config('breadcrumb.home') . ' » ' . i18n('Profile_for') . ' ' . $author->name,
@@ -307,6 +308,7 @@ get('/author/:name', function ($name) {
'posts' => $posts,
'about' => $author->about,
'name' => $author->name,
+ 'author' => $author,
'type' => 'is_profile',
'bodyclass' => 'in-profile author-' . $name,
'breadcrumb' => '' . config('breadcrumb.home') . ' » ' . i18n('Profile_for') . ' ' . $author->name,
diff --git a/themes/twentyfifteen/README.md b/themes/twentyfifteen/README.md
index 7e2272c..d2d4e24 100644
--- a/themes/twentyfifteen/README.md
+++ b/themes/twentyfifteen/README.md
@@ -1,11 +1,6 @@
# HTMLy Theme Twenty Fifteen
WordPress Twenty Fifteen ported to HTMLy.
-## Installations
- - Upload and extract the zip file into themes directory.
- - Rename the extracted folder to `twentyfifteen`.
- - Change the `views.root` using `http://www.example.com/admin/config` to `themes/twentyfifteen`
-
## License
See the LICENSE.txt
diff --git a/themes/twentyfifteen/css/style.css b/themes/twentyfifteen/css/style.css
index a98104b..7aca5d4 100644
--- a/themes/twentyfifteen/css/style.css
+++ b/themes/twentyfifteen/css/style.css
@@ -880,7 +880,7 @@ a:focus {
content: "\f516";
}
-.social-navigation a[href$="/feed/rss"]:before {
+.social-navigation a[href*="/feed"]:before {
content: "\f413";
}
diff --git a/themes/twentyfifteen/css/style_v2.css b/themes/twentyfifteen/css/style_v2.css
index 16aa9f4..bba4372 100644
--- a/themes/twentyfifteen/css/style_v2.css
+++ b/themes/twentyfifteen/css/style_v2.css
@@ -881,7 +881,7 @@ a:focus {
content: "\f516";
}
-.social-navigation a[href$="/feed/rss"]:before {
+.social-navigation a[href*="/feed"]:before {
content: "\f413";
}
diff --git a/themes/twentyfifteen/layout.html.php b/themes/twentyfifteen/layout.html.php
index cb96800..c876824 100644
--- a/themes/twentyfifteen/layout.html.php
+++ b/themes/twentyfifteen/layout.html.php
@@ -47,6 +47,11 @@