diff --git a/site/layouts/index.html b/site/layouts/index.html
index 4266cf72a..92fb574fe 100644
--- a/site/layouts/index.html
+++ b/site/layouts/index.html
@@ -2,7 +2,13 @@
{{ partial "home_hero" . }}
- {{ partial "index_tweets" . }}
+
+ {{ range .Site.Data.twitter }}
+
+ {{ partial "widget/tweet.html" . }}
+
+ {{ end }}
+
{{ end }}
\ No newline at end of file
diff --git a/site/layouts/partials/index_tweets.html b/site/layouts/partials/index_tweets.html
deleted file mode 100644
index 3d93c1f03..000000000
--- a/site/layouts/partials/index_tweets.html
+++ /dev/null
@@ -1,7 +0,0 @@
-
- {{ range sort .Site.Data.twitter "order" }}
-
- {{ partial "widget/tweet.html" . }}
-
- {{ end }}
-
\ No newline at end of file