summaryrefslogtreecommitdiff
path: root/Assistant/WebApp/Documentation.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-07-31 02:30:26 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-07-31 02:30:26 -0400
commit2c8bbdf307899683ea8e2d934ec0ed2bfa3bc3d4 (patch)
tree072eb160445f0c3cb6ba5db3448aa7483f15a4e6 /Assistant/WebApp/Documentation.hs
parent5fed026bcdaa0724acd2640193e341bb8358980b (diff)
made navbar work
also added an About page and a stub Config page.
Diffstat (limited to 'Assistant/WebApp/Documentation.hs')
-rw-r--r--Assistant/WebApp/Documentation.hs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Assistant/WebApp/Documentation.hs b/Assistant/WebApp/Documentation.hs
new file mode 100644
index 000000000..b0a9e4d98
--- /dev/null
+++ b/Assistant/WebApp/Documentation.hs
@@ -0,0 +1,22 @@
+{- git-annex assistant webapp documentation
+ -
+ - Copyright 2012 Joey Hess <joey@kitenet.net>
+ -
+ - Licensed under the GNU GPL version 3 or higher.
+ -}
+
+{-# LANGUAGE TypeFamilies, QuasiQuotes, MultiParamTypeClasses, TemplateHaskell, OverloadedStrings, RankNTypes #-}
+
+module Assistant.WebApp.Documentation where
+
+import Assistant.WebApp
+import Assistant.WebApp.SideBar
+import Utility.Yesod
+
+import Yesod
+
+getAboutR :: Handler RepHtml
+getAboutR = bootstrap (Just About) $ do
+ sideBarDisplay
+ setTitle "About git-annex"
+ $(widgetFile "documentation/about")