Shpadoinkle-template: Read standard file formats into Shpadoinkle with Template Haskell

[ bsd3, library, web ] [ Propose Tags ]

This package provides TH functions to read files at compile time and embed them into Shpadoinkle views.


[Skip to Readme]

Modules

  • Shpadoinkle
    • Shpadoinkle.Template
      • Shpadoinkle.Template.TH

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.0.0.1, 0.0.0.2
Dependencies base (>=4.12.0 && <4.16), directory, html-entities, html-parse, process, Shpadoinkle, Shpadoinkle-backend-static, template-haskell, text (>=1.2.3 && <1.3) [details]
License BSD-3-Clause
Author Isaac Shapira
Maintainer isaac.shapira@platonic.systems
Category Web
Source repo head: git clone https://gitlab.com/platonic/shpadoinkle.git
Uploaded by fresheyeball at 2021-06-02T18:11:56Z
Distributions
Downloads 289 total (9 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2021-06-02 [all 2 reports]

Readme for Shpadoinkle-template-0.0.0.2

[back to package description]

Shpadoinkle Template

Goldwater Haddock BSD-3 built with nix Hackage Hackage Deps Hackage CI

This module provides the ability to read files into Shpadoinkle views.

Usage

Lets say you have template.html

<h1>Hi!</h1>
<div>Nice to meat you</div>

you can now embed it into a Shpadoinkle

view :: Html m a
view = div [ className "my-view" ] $(embedHtml "./template.html")

which will render as

<div class="my-view">
  <h1>Hi!</h1>
  <div>Nice to meat you</div>
</div>