diff --git a/layouts/index.html b/layouts/index.html
index 9983b08..396e9af 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,3 +1,27 @@
{{ define "main" }}
+
{{ i18n "latest-posts" }}
+{{ $pages := first .Site.Params.latestPostsCount (where .Site.RegularPages "Section" "blog") }}
+
+{{ range $pages }}
+-
+
+
+
+
+
+ {{ if .Params.link }}
+ {{ .Title }} ↪
+ {{ else }}
+ {{ .Title }}
+ {{ end }}
+
+{{ else }}
+-
+ {{ i18n "no-posts" }}
+
+{{ end }}
+
{{ .Content }}
{{ end }}