projects
/
zzz-floof.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
340cdf95b6e8aa501680666a33943fe8e0b180a4
[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
</head>
7
<body>
8
% if c.user:
9
<p>sup ${c.user.name}</p>
10
% else:
11
<p>not logged in</p>
12
% endif
13
${next.body()}
14
</body>
15
</html>