Name: generic-lucid-scaffold Version: 0.0.1 Author: Athan Clark Maintainer: Athan Clark License: MIT License-File: LICENSE Synopsis: General-purpose web page scaffold for Lucid. Description: This is a general organization scheme for web pages, implemented for Lucid. . It's as easy as 1-2-3: . > λ> renderText $ template mempty "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: Lucid.Scaffold Build-Depends: base >= 4 && < 5 , lucid >= 2.5 , text Source-Repository head Type: git Location: https://github.com/athanclark/generic-lucid-scaffold.git