From ee438545e04e79a9a6a31bd1deae6f2fc393ee25 Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 7 Jan 2018 13:54:28 -0500 Subject: [PATCH] Temporarily removed sort order. --- site/layouts/index.html | 8 +++++++- site/layouts/partials/index_tweets.html | 7 ------- 2 files changed, 7 insertions(+), 8 deletions(-) delete mode 100644 site/layouts/partials/index_tweets.html 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