comparison rhodecode/templates/errors/error_document.html @ 547:1e757ac98988

renamed project to rhodecode
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 06 Oct 2010 03:18:16 +0200
parents pylons_app/templates/errors/error_document.html@558eb7c5028f
children a1ec653f5f95
comparison
equal deleted inserted replaced
546:7c2f5e4d7bbf 547:1e757ac98988
1 ## -*- coding: utf-8 -*-
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" id="mainhtml">
4 <head>
5 <title>Error - ${c.error_message}</title>
6 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7 %if c.redirect_time:
8 <meta http-equiv="refresh" content="${c.redirect_time}; url=${c.url_redirect}"/>
9 %endif
10 <link rel="icon" href="/images/hgicon.png" type="image/png" />
11 <meta name="robots" content="index, nofollow"/>
12
13 <!-- stylesheets -->
14 <link rel="stylesheet" type="text/css" href="/css/reset.css" />
15 <link rel="stylesheet" type="text/css" href="/css/style.css" media="screen" />
16 <link id="color" rel="stylesheet" type="text/css" href="/css/colors/blue.css" />
17 <style type="text/css">
18 #main_div{
19 border: 0px solid #000;
20 width: 500px;
21 margin: auto;
22 text-align: center;
23 margin-top: 200px;
24 font-size: 1.8em;
25 }
26 .error_message{
27 text-align: center;
28 color:red;
29 font-size: 1.8em;
30 }
31 </style>
32
33 </head>
34 <body>
35
36 <div id="login">
37 <div class="table">
38 <div id="main_div">
39 <h1 class="error_message">${c.error_message}</h1>
40
41 <p>${c.error_explanation}</p>
42 %if c.redirect_time:
43 <p>${_('You will be redirected to %s in %s seconds') % (c.redirect_module,c.redirect_time)}</p>
44 %endif
45
46 </div>
47 </div>
48 <!-- end login -->
49 </div>
50 </body>
51
52 </html>
53