Switch over to Elixir
[zzz-floof.git] / floof / templates / base.mako
1 <%def name="title()">Untitled</%def>\
2 <!DOCTYPE html>
3 <html>
4 <head>
5 <title>${title()} — Floof</title>
6 <link rel="stylesheet" type="text/css" href="/reset.css">
7 <link rel="stylesheet" type="text/css" href="/layout.css">
8 </head>
9 <body>
10 % if c.user:
11 <p>sup ${c.user.name}</p>
12 % else:
13 <p>not logged in</p>
14 % endif
15 ${next.body()}
16 </body>
17 </html>