diff --git a/layouts/index.html b/layouts/index.html
index ce2e79f..1b897b2 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,29 +1,33 @@
{{ define "main" }}
{{ with .Content }}
- {{ . }}
+
+ {{ . }}
+
{{ end }}
{{ if .Site.Params.homepageLatestPosts }}
-
+
+
+ {{ i18n "latest_posts" }}
+ {{ partial "rss-link.html" . }}
+
- {{ with (.Paginate .Site.RegularPages).Pages }}
-
-
- {{ range . }}
- - {{ .Render "summary/post" }}
- {{ end }}
-
-
- {{ else }}
-
- {{ i18n "no_posts" }}
-
- {{ end }}
+ {{ with (.Paginate .Site.RegularPages).Pages }}
+
+
+ {{ range . }}
+ - {{ .Render "summary/post" }}
+ {{ end }}
+
+
+ {{ else }}
+
+ {{ i18n "no_posts" }}
+
+ {{ end }}
- {{ partial "pagination.html" . }}
+ {{ partial "pagination.html" . }}
+
{{ end }}
{{ end }}