diff options
Diffstat (limited to 'app')
| -rw-r--r-- | app/Main.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Main.hs b/app/Main.hs index ea3ea01..86db104 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -102,9 +102,9 @@ main = do route $ dropParentRoute 1 `composeRoutes` setExtension ".html" compile $ getResourceBody >>= applyAsTemplate baseCtxt >>= myRenderPandoc >>= applyTemplate defaultTemplate baseCtxt - -- match "www/contact/*.html" $ do - -- route $ dropParentRoute 1 - -- compile $ getResourceBody >>= applyAsTemplate baseCtxt >>= applyTemplate defaultTemplate baseCtxt + match "www/contact/*.html" $ do + route $ dropParentRoute 1 + compile $ getResourceBody >>= applyAsTemplate baseCtxt >>= applyTemplate defaultTemplate baseCtxt -- -- match "www/code/*.html" $ do -- route $ dropParentRoute 1 |
