Haskell Server Pages

Hello, I'm interested in writing a personal home-page in a functional way, and i'm in need of some clues. Is there any resource, devoted exactly to the functional approaches to the web programming and web design? I've seen a WASH project, but i'm not really saticefied with the way pages look there. What i trully need is something like Haskell Server Pages system, from Erik Meijer's "Haskell Server Pages. Functional programming and the Battle for the Middle Tier" paper, but i haven't found any implementation of that. I'm not very good at either web programming, or Haskell, i'm just a fan of it, and there's no way i can implement that myself. Is anyone writing currently something like table = <table border="1"> <% mkRows cells%></table> Can anyone provide me with some links? Best regards, Grigory

Grigory Makeev wrote:
I've seen a WASH project, but i'm not really satisfied with the way pages look there.
Is anyone writing currently something like table = <table border="1"> <% mkRows cells%></table>
WASH does have everything you need -- except, of course decent-looking examples. I suspect they were made with simplicity and functionality in mind -- making the reader underestimate the potential of the system. To make it look prettier, search google for Cascading Style Sheets (CSS), and as to the second request, see
wash2hs, a preprocessor for including literal XHTML fragments in the style of Haskell Server Pages (HSP) [taken from the wash page]
Hope it helps, Guilherme.
participants (2)
-
"Grigory Makeev
-
Guilherme Lopes