Paste server written in Haskell. Fork of Hpaste, fully freedom and privacy respecting and generally improved. At the time of writing there's an instance at <http://paste.rel4tion.org>.
Clone
HTTPS:
git clone https://vervis.peers.community/repos/aoqmo
SSH:
git clone USERNAME@vervis.peers.community:aoqmo
Branches
Tags
New.hs
{-# OPTIONS -Wall -fno-warn-name-shadowing #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
-- | Create new paste view.
module Hpaste.View.New
(page)
where
import Hpaste.Types
import Hpaste.View.Html
import Hpaste.View.Layout
import Prelude hiding ((++))
import Text.Blaze.Html5 as H hiding (map)
-- | Render the create new paste page.
page :: Html -> Html
page form =
layoutPage $ Page {
pageTitle = "Create new paste"
, pageBody = lightSection "Create new paste" form
, pageName = "new"
}
|