PageRenderTime 27ms CodeModel.GetById 21ms app.highlight 4ms RepoModel.GetById 0ms app.codeStats 0ms

/shabti/templates/scaffolding/templates/base.mako_tmpl

https://bitbucket.org/gawel/shabti
Unknown | 19 lines | 18 code | 1 blank | 0 comment | 0 complexity | 5b209a7174d6274ae8785031c447f5b3 MD5 | raw file
 1## -*- coding: utf-8 -*-
 2<html>
 3<head>
 4    <title>{{title}}</title>
 5    ${h.stylesheet_link('/css/scaffold.css')}
 6</head>
 7<body>
 8    <% messages = h.flash.pop_messages() %>
 9    % if messages:
10    <ul id="flash-messages">
11    % for message in messages:
12        <li>${message}</li>
13    % endfor
14    </ul>
15    % endif
16
17    ${next.body()}
18</body>
19</html>