From b0d997dabc64a13d26ce2cc21bcf9839247fa4c3 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Mon, 2 Oct 2017 21:49:04 +1100 Subject: [PATCH] Rename the widget files for the Home handler to also be called 'home' --- src/Handler/Home.hs | 2 +- templates/{homepage.hamlet => home.hamlet} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename templates/{homepage.hamlet => home.hamlet} (100%) diff --git a/src/Handler/Home.hs b/src/Handler/Home.hs index 1b29c0c..598de27 100644 --- a/src/Handler/Home.hs +++ b/src/Handler/Home.hs @@ -8,4 +8,4 @@ module Handler.Home where import Import getHomeR :: Handler Html -getHomeR = defaultLayout $(widgetFile "homepage") +getHomeR = defaultLayout $(widgetFile "home") diff --git a/templates/homepage.hamlet b/templates/home.hamlet similarity index 100% rename from templates/homepage.hamlet rename to templates/home.hamlet