From 08cb941a9302728a0ab058f844962540d66b82dd Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Mon, 12 Jan 2015 01:49:22 -0500 Subject: [PATCH] Removed unused/stale template The template "templates/recent-posts.haml" has been superseded by "templates/partials/recent-post-list.haml" but was left behind. Signed-off-by: Collin J. Doering --- templates/recent-posts.haml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 templates/recent-posts.haml diff --git a/templates/recent-posts.haml b/templates/recent-posts.haml deleted file mode 100644 index 2a2e209..0000000 --- a/templates/recent-posts.haml +++ /dev/null @@ -1,15 +0,0 @@ -#recent-posts.sixteen.columns - .recent-post-item.active - %a(href="$url$") - %strong $mostRecentPostTitle$ - $if(mostRecentPostTeaser)$ - $mostRecentPostTeaser$ - $else$ - $mostRecentPostBody$ - $endif$ - - $for(recentPosts)$ - .recent-post-item - %h1 $title$ - $if(teaser)$ $teaser$ $else$ $body$ $endif$ - $endfor$