diff --git a/templates/home.hamlet b/templates/home.hamlet
index 41d66b5..d90264c 100644
--- a/templates/home.hamlet
+++ b/templates/home.hamlet
@@ -1,6 +1,7 @@
$if null recentMedia
This gallery is still empty.
$else
+
Newest images:
$forall (Entity mediumId medium) <- recentMedia
-
diff --git a/templates/profile.hamlet b/templates/profile.hamlet
index d1d2486..ca023da 100644
--- a/templates/profile.hamlet
+++ b/templates/profile.hamlet
@@ -8,7 +8,7 @@ $if null userAlbs
-
This user has no albums yet
$else
- Albums of this user:
+
Albums of this user:
$forall (Entity albumId album) <- userAlbs
-
@@ -23,7 +23,7 @@ $else
$if null recentMedia
This user has not uploaded any images
$else
- Newest images:
+
Newest images:
$forall (Entity mediumId medium) <- take 10 recentMedia
-
diff --git a/templates/tagMedia.hamlet b/templates/tagMedia.hamlet
index 83f3283..4a32725 100644
--- a/templates/tagMedia.hamlet
+++ b/templates/tagMedia.hamlet
@@ -1,6 +1,6 @@
$newline always
-
#{tag}
+Tag #{tag}
$if null media
There are no media tagged with #{tag}