comparison pylons_app/templates/errors/error_document.html @ 362:558eb7c5028f rhodecode-0.0.0.8.0

version bump to 0.8 hg app 0.8 new template. Add yui flot and graph into summary page. + various tweeks and patches into look of application
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 24 Jul 2010 02:17:48 +0200
parents b00945765e7b
children
comparison
equal deleted inserted replaced
361:3581656180b7 362:558eb7c5028f
1 ## -*- coding: utf-8 -*- 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"> 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"> 3 <html xmlns="http://www.w3.org/1999/xhtml" id="mainhtml">
4 <head> 4 <head>
5 <link rel="icon" href="/images/hgicon.png" type="image/png" /> 5 <title>Error - ${c.error_message}</title>
6 <title>Error - ${c.error_message}</title> 6 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7 <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>
8 32
9 %if c.redirect_time: 33 </head>
10 <meta http-equiv="refresh" content="${c.redirect_time}; url=${c.url_redirect}"/> 34 <body>
11 %endif 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>
12 51
13
14 <style type="text/css">
15
16 body {
17 font-family: sans-serif;
18 }
19 #main_div{
20 border: 0px solid #000;
21 width: 500px;
22 margin: auto;
23 text-align: center;
24 margin-top: 200px;
25 }
26 .error_message{
27 text-align: center;
28 color:red;
29 }
30 </style>
31 </head>
32
33 <body>
34 <div id="main_div">
35 <h1 class="error_message">${c.error_message}</h1>
36
37 <p>${c.error_explanation}</p>
38 %if c.redirect_time:
39 <p>${_('You will be redirected to %s in %s seconds') % (c.redirect_module,c.redirect_time)}</p>
40 %endif
41
42 </div>
43 </body>
44 </html> 52 </html>
45 53
46