3ac2cf09e5
Broke hamlet out into standalone files. I don't like the favicon display; it should be served from /favicon.ico, but I could only get the static site to serve /static/favicon.ico, so I had to use a <link rel=icon> to pull it in. I looked at Yesod.Default.Handlers.getFaviconR, but it doesn't seem to embed the favicon into the binary?
11 lines
254 B
Text
11 lines
254 B
Text
$doctype 5
|
|
<html>
|
|
<head>
|
|
<title>#{baseTitle webapp} #{pageTitle page}
|
|
<link rel="icon" href=@{StaticR favicon_ico} type="image/x-icon">
|
|
|
|
^{pageHead page}
|
|
<body>
|
|
$maybe msg <- mmsg
|
|
<div #message>#{msg}
|
|
^{pageBody page}
|