1 <%def name="title()">Untitled</%def>\
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">
11 <a href="${h.url_for("/")}">Home</a>
13 ${h.form(h.url_for(controller='search'), method='GET')}
14 ${h.text('query')} ${h.submit(None, 'Search')}
19 <form action="${url(controller='account', action='logout')}" method="POST">
20 <p>Logged in as ${c.user.name}. ${h.submit(None, 'Log out')}</p>
23 <form action="${url(controller='account', action='login_begin')}" method="POST">
25 Identity URL: <input type="text" name="identity_url">
26 <input type="submit" value="Log in">
38 <p>Powered by floof</p>