The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
71 views

How to include one external hamlet file inside another?

My question is quite simple: How can I include one external hamlet file into another external hamlet file? Let's say I have a header or footer that's shared amongst every page, does it have to be ...
4
votes
1answer
71 views

How to use $maybe in hamlet

In Yesod, I've got a form that populates the type data Field = Field Text Text text deriving Show When I write the hamlet html to display it, I'm running into the problem that Field is wrapped ...
3
votes
0answers
79 views

Is there a function that transform from plain HTML to Hamlet structure?

I am starting to use the Yesod web framework. I have some already existing template HTML code that I would like to automatically translate to a Hamlet code structure. Is there a way to do this?
1
vote
1answer
37 views

Using Type-safe URLs with setMessage? (shamlet versus hamlet)

How do I use a type-safe url with setMessage? I want to change ... setMessage [shamlet|<span .warning>Warning! See Help.|] ... to a message that contains a link. From what I could gather ...
2
votes
1answer
134 views

yesod persistent: get Entity value within hamlet

let's say my config/models file looks like this: Pet name Text owner OwnerId Owner name Text I can get the pet's name like this: $forall Entity key pet <- pets ...
1
vote
1answer
61 views

How does one apply HamletSettings to a quasiquote in Hamlet?

Background: I am studying how Hamlet works, with WAI, but without Yesod. I have no grasp of Template Haskell, but before I dive into it, I am wondering if there is a known/quick solution for this ...
2
votes
1answer
66 views

Use of Hamlet's $case with records and ADTs

It would seem that Hamlet's $case expression should be remarkably useful, but I can't figure out how one would match against an record type with multiple constructors short of pattern matching (with a ...
0
votes
1answer
134 views

Use Shakespeare-text and external file

How can I convert the below example to use an external file instead of the embedded lazy text quasi quotes? {-# LANGUAGE QuasiQuotes, OverloadedStrings #-} import Text.Shakespeare.Text import ...
2
votes
2answers
183 views

Using UTCTime with Hamlet

I am using Yesod on my first site and I have a list of news items: NewsItem date UTCTime default=CURRENT_TIME title String content String author String which are retrieved in ...
1
vote
1answer
123 views

Recursive Html generation with Hamlet

I'd like to generate a comment tree. <ul> <li> First comment <ul> <li> reply to first comment <li> another reply to first comment ...
1
vote
1answer
108 views

Test if User is Logged in In Hamlet template

I want to test if the user is authenticated and show a "log in" or "log out" link depending on the state. So far I have $maybe muid <- maybeAuthId <a href=@{AuthR LogoutR} >Logout ...
2
votes
1answer
98 views

How do I use StaticRoute values in Hamlet?

The TH call $(staticFiles "static") dumps a load of values of type StaticRoute. Hamlet typesafe URLs (i.e. @{...}) take values of type Route Foo, where Foo is my foundation. There must be a way ...
1
vote
1answer
140 views

Yesod: Is it possible to to iterate a haskell list in Julius?

I have a list of coordinates that I need to put on map. Is it possible in julius to iterate the list ? Right now I am creating an hidden table in hamlet and accessing that table in julius which does ...
0
votes
1answer
71 views

Cassius and Hamlet

I've used to hamlet to produce an internal stylesheet as follows: style = [hamlet|<style type=text/css> h3 {margin-bottom: 0} |] How might this be rewritten to use Cassius/Lucius instead of ...
1
vote
1answer
64 views

What doctypes are available in Yesod Hamlet?

In Hamlet, $doctype 5 generates <!DOCTYPE html>. The Yesod book says that "We have support for a number of different versions of a doctype", but does not document these. What other doctypes ...
2
votes
1answer
94 views

id property in yesod

In yesod, we can specify the class attribute like so: <div .myclass> ==> <div class="myclass"> Is there an analog for id? For example, something like: <div #id> ==> <div ...
1
vote
2answers
181 views

Trying to send an email in yesod using hamlet

I am building a survey site in Yesod (0.10) and am getting lost in the types. Here is a simplified version on what I am trying to do. invitation url = do render <- getUrlRender return $ ...
4
votes
2answers
182 views

Hamlet automatic access to variables in scope

From the Yesod Book. Hamlet automatically has access to the variables in scope when it's called. There is no need to specifically pass variables in. What is this deep magic? How can it ...
6
votes
1answer
318 views

How to print comma-separated list with hamlet?

With the hamlet templating language that comes with yesod, what is the best way of printing a comma-separated list? E.g. assume this code which just prints one entry after another, how do I insert ...
2
votes
1answer
184 views

Yesod: How to build parameterized routes

I am try to pass a parameter to a route at runtime inside a hamlet template. buildFeedRow :: Item [Attribute Text] -> GWidget a a () buildFeedRow item = do let f = unpackItem item ...
4
votes
1answer
302 views

Trouble with $forall in hamlet template

I'm having a strange issue with hamlet. I'm trying to use $forall to iterate through a list, but I keep getting a "Not in scope" error. I'm running yesod 0.9.2.2 on Win7. Terrible design aside, ...
0
votes
1answer
82 views

need to render several html snippets in different places inside a hamlet template

in my default-layout.hamlet: !!! <html lang="en"> <head> <meta charset="utf-8"> <title>#{pageTitle pc} ^{pageHead pc} <body> <div id="main"> <div ...
5
votes
2answers
831 views

Using Hamlet in Haskell without Yesod

Can anyone point me to an example of how to use Hamlet without Yesod? http://www.yesodweb.com/book/templates is a great bit of documentation, but I can't get my ghci session to render even a simple ...
3
votes
1answer
262 views

GHC cabal install hamlet fails with an obscure error

I am trying to install a Hamlet on a webfaction shared server so I can compile and run my web application there. I am using Yesod to develop the application. I managed to compile GHC 7 from source ...