Name: webpage Version: 0.0.2 Author: Athan Clark Maintainer: Athan Clark License: MIT License-File: LICENSE Synopsis: Organized and simple web page scaffold for blaze and lucid Description: This is a general organization scheme for web pages, implemented for Lucid, and adapted for Blaze-html. . It's as easy as 1-2-3: . > import Web.Page.Lucid > > λ> renderText $ template def "some content" > > ↪ " rel="icon">some content" . overload the particular areas with record syntax and stuff: . > λ> let page = WebPage > "foo" > mempty > mempty > mempty > mempty > mempty > mempty > (script_ [src_ "jquery.js"] "") > > > λ> template page "some content" > > ↪ "foo rel=\"icon\">some content" . Cabal-Version: >= 1.10 Build-Type: Simple Library Default-Language: Haskell2010 HS-Source-Dirs: src GHC-Options: -Wall Exposed-Modules: Web.Page.Types Web.Page.Lucid Web.Page.Blaze Web.Page.Hastache Build-Depends: base >= 4 && < 5 , lucid >= 2.5 , blaze-html , hastache , text , data-default Source-Repository head Type: git Location: https://github.com/athanclark/webpage.git