weboob-devel/weboob/frontends/http/templates/base.mako
2010-03-29 13:25:40 +02:00

16 lines
375 B
Mako

## -*- coding: utf-8 -*-
<%def name="title()" filter="trim">
weboob
</%def>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>${self.title()}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
${next.body()}
</body>
</html>