eidolon/Handler/About.hs

31 lines
1,008 B
Haskell
Raw Normal View History

2016-09-09 15:04:26 +00:00
-- eidolon -- A simple gallery in Haskell and Yesod
-- Copyright (C) 2015 Amedeo Molnár
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU Affero General Public License as published
-- by the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU Affero General Public License for more details.
--
-- You should have received a copy of the GNU Affero General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
2016-09-09 19:38:11 +00:00
module Handler.About where
2016-09-09 15:04:26 +00:00
import Import
getAboutR :: Handler Html
2016-09-09 19:38:11 +00:00
getAboutR = do
master <- getYesod
2016-09-09 15:04:26 +00:00
defaultLayout $
$(widgetFile "about")
getThreatR :: Handler Html
getThreatR =
defaultLayout $
$(widgetFile "threat")