diff --git a/less/account.less b/less/account.less
index a183541..7dcffbc 100644
--- a/less/account.less
+++ b/less/account.less
@@ -7,6 +7,14 @@
 		max-width: @screen-sm-min;
 		margin-left: auto;
 		margin-right: auto;
+
+		> h1 {
+			text-align: center;
+			font-size: 20px;
+			color: @gray-light;
+			font-weight: 300;
+			margin-bottom: 24px;
+		}
 	}
 
 	.cover {
diff --git a/templates/account/favourites.tpl b/templates/account/favourites.tpl
index d35fbc0..ae318bf 100644
--- a/templates/account/favourites.tpl
+++ b/templates/account/favourites.tpl
@@ -2,7 +2,8 @@
 	<!-- IMPORT partials/account/header.tpl -->
 
 	<div class="favourites row">
-
+		<h1>[[pages:{template.name}, {username}]]</h1>
+		
 		<!-- IF !posts.length -->
 			<div class="alert alert-warning text-center">[[topic:favourites.has_no_favourites]]</div>
 		<!-- ENDIF !posts.length -->
diff --git a/templates/account/followers.tpl b/templates/account/followers.tpl
index e7223aa..08eec5c 100644
--- a/templates/account/followers.tpl
+++ b/templates/account/followers.tpl
@@ -2,7 +2,8 @@
 	<!-- IMPORT partials/account/header.tpl -->
 
 	<div class="users row">
-
+		<h1>[[pages:{template.name}, {username}]]</h1>
+		
 		<ul id="users-container" class="users-container" data-nextstart="{nextStart}">
 			<!-- IMPORT partials/users_list.tpl -->
 		</ul>
diff --git a/templates/account/following.tpl b/templates/account/following.tpl
index 2317c03..6780466 100644
--- a/templates/account/following.tpl
+++ b/templates/account/following.tpl
@@ -2,6 +2,8 @@
 	<!-- IMPORT partials/account/header.tpl -->
 
 	<div class="users row">
+		<h1>[[pages:{template.name}, {username}]]</h1>
+		
 		<ul id="users-container" class="users-container" data-nextstart="{nextStart}">
 			<!-- IMPORT partials/users_list.tpl -->
 		</ul>
diff --git a/templates/account/groups.tpl b/templates/account/groups.tpl
index 828cbbf..1cb322e 100644
--- a/templates/account/groups.tpl
+++ b/templates/account/groups.tpl
@@ -1,6 +1,10 @@
 <div class="account">
 	<!-- IMPORT partials/account/header.tpl -->
 
+	<div class="row">
+		<h1>[[pages:{template.name}, {username}]]</h1>
+	</div>
+	
 	<div class="groups list">
 		<div component="groups/container" id="groups-list" class="row">
 			<!-- IF !groups.length -->
diff --git a/templates/account/posts.tpl b/templates/account/posts.tpl
index 2d93344..77071a1 100644
--- a/templates/account/posts.tpl
+++ b/templates/account/posts.tpl
@@ -2,6 +2,8 @@
 	<!-- IMPORT partials/account/header.tpl -->
 
 	<div class="favourites row">
+		<h1>[[pages:{template.name}, {username}]]</h1>
+		
 		<!-- IF !posts.length -->
 		<div class="alert alert-warning text-center">[[user:has_no_posts]]</div>
 		<!-- ENDIF !posts.length -->
diff --git a/templates/account/profile.tpl b/templates/account/profile.tpl
index e871efd..d1581ac 100644
--- a/templates/account/profile.tpl
+++ b/templates/account/profile.tpl
@@ -142,6 +142,8 @@
 
 		</div>
 
+		<h1>[[pages:account/posts, {username}]]</h1>
+
 		<div class="col-xs-12">
 		<!-- IF !posts.length -->
 		<div class="alert alert-warning">[[user:has_no_posts]]</div>
diff --git a/templates/account/topics.tpl b/templates/account/topics.tpl
index 544ebb5..5c29f76 100644
--- a/templates/account/topics.tpl
+++ b/templates/account/topics.tpl
@@ -2,6 +2,8 @@
 	<!-- IMPORT partials/account/header.tpl -->
 
 	<div class="row">
+		<h1>[[pages:{template.name}, {username}]]</h1>
+		
 		<!-- IF !topics.length -->
 		<div class="alert alert-warning">[[user:has_no_topics]]</div>
 		<!-- ENDIF !topics.length -->
diff --git a/templates/account/watched.tpl b/templates/account/watched.tpl
index 19e55a9..12dc772 100644
--- a/templates/account/watched.tpl
+++ b/templates/account/watched.tpl
@@ -2,6 +2,8 @@
 	<!-- IMPORT partials/account/header.tpl -->
 
 	<div class="row">
+		<h1>[[pages:{template.name}, {username}]]</h1>
+
 		<!-- IF !topics.length -->
 		<div class="alert alert-warning">[[user:has_no_watched_topics]]</div>
 		<!-- ENDIF !topics.length -->