webpage

Organized and simple web page scaffold for blaze and lucid

Version on this page:0.0.4
LTS Haskell 22.14:0.0.5.1
Stackage Nightly 2024-03-28:0.0.5.1
Latest on Hackage:0.0.5.1

See all snapshots webpage appears in

MIT licensed and maintained by Athan Clark
This version can be pinned in stack with:webpage-0.0.4@sha256:c06fec20b56cfd058b1239cf04b3f3e029ffa2cbd9ae87daf0372da564d311cb,1854

Module documentation for 0.0.4

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"

 ↪ "<!DOCTYPE HTML><html><head><title></title><link href
   rel="icon"></head><body>some content</body></html>"

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"

 ↪ "<!DOCTYPE HTML><html><head><title>foo</title>
   </head><body>some content<script
   src=\"jquery.js\"></script></body></html>"