summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2013-02-23 12:55:35 +0100
committerJasper Van der Jeugt <m@jaspervdj.be>2013-02-23 12:55:35 +0100
commit9b603587de20d42d95e6affc2bce85447de6f58e (patch)
treecf06ac30845ec3c0ecddba5195e02f14788855f9
parent14fc440511cdb0323eeecd4002bd82d26f177100 (diff)
downloadhakyll-9b603587de20d42d95e6affc2bce85447de6f58e.tar.gz
Fix unused imports warnings
-rw-r--r--src/Hakyll/Web/Template/List.hs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Hakyll/Web/Template/List.hs b/src/Hakyll/Web/Template/List.hs
index 9571b9e..8eadd53 100644
--- a/src/Hakyll/Web/Template/List.hs
+++ b/src/Hakyll/Web/Template/List.hs
@@ -1,4 +1,3 @@
-{-# LANGUAGE TupleSections #-}
--------------------------------------------------------------------------------
-- | Provides an easy way to combine several items in a list. The applications
-- are obvious:
@@ -8,6 +7,7 @@
-- * An image list in a gallery
--
-- * A sitemap
+{-# LANGUAGE TupleSections #-}
module Hakyll.Web.Template.List
( applyTemplateList
, applyJoinTemplateList
@@ -20,13 +20,11 @@ module Hakyll.Web.Template.List
import Control.Monad (liftM)
import Data.List (intersperse, sortBy)
import Data.Ord (comparing)
-import System.FilePath (takeBaseName)
import System.Locale (defaultTimeLocale)
--------------------------------------------------------------------------------
import Hakyll.Core.Compiler
-import Hakyll.Core.Identifier
import Hakyll.Core.Item
import Hakyll.Core.Metadata
import Hakyll.Web.Template