comparison pylons_app/templates/errors/error_document.html @ 0:564e40829f80

initial commit.
author Marcin Kuzminski
date Thu, 18 Feb 2010 13:01:57 +0100
parents
children 923f0e6ab010
comparison
equal deleted inserted replaced
-1:000000000000 0:564e40829f80
1 ## -*- coding: utf-8 -*-
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" >
5
6 <head>
7 <title>Error - ${c.error_message}</title>
8 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
9 <meta http-equiv="refresh" content="${c.redirect_time}; url=${c.url_redirect}"/>
10 <style type="text/css">
11
12 body {
13 font-family: sans-serif;
14 }
15 #main_div{
16 border: 2px solid #8daed8;
17 width: 500px;
18 margin: auto;
19 text-align: center;
20 margin-top: 200px;
21 }
22 .error_message{
23 text-align: center;
24 color:red;
25 }
26 </style>
27 </head>
28
29 <body>
30 <div id="main_div">
31 <h1 class="error_message">${c.error_message}</h1>
32
33 <p>${c.error_explanation}</p>
34 <p>${_('You will be redirected to %s in %s seconds') % (c.redirect_module,c.redirect_time)}</p>
35 </div>
36 </body>
37 </html>
38
39