##// END OF EJS Templates
added icons to journal, extend show more to actually show more pushed revisions,
added icons to journal, extend show more to actually show more pushed revisions,

File last commit:

r619:a1ec653f default
r808:1af15d66 beta
Show More
error_document.html
56 lines | 1.8 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" id="mainhtml">
<head>
<title>Error - ${c.error_message}</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
%if c.redirect_time:
<meta http-equiv="refresh" content="${c.redirect_time}; url=${c.url_redirect}"/>
%endif
<link rel="icon" href="/images/hgicon.png" type="image/png" />
<meta name="robots" content="index, nofollow"/>
<!-- stylesheets -->
<link rel="stylesheet" type="text/css" href="/css/reset.css" />
<link rel="stylesheet" type="text/css" href="/css/style.css" media="screen" />
<link id="color" rel="stylesheet" type="text/css" href="/css/colors/blue.css" />
<style type="text/css">
#main_div{
border: 0px solid #000;
width: 500px;
margin: auto;
text-align: center;
margin-top: 200px;
#38 updated RhodeCode titles
r619 font-size: 1.6em;
renamed project to rhodecode
r547 }
.error_message{
text-align: center;
#38 updated RhodeCode titles
r619 color:#003367;
font-size: 1.6em;
margin:10px;
renamed project to rhodecode
r547 }
</style>
</head>
<body>
<div id="login">
<div class="table">
<div id="main_div">
#38 updated RhodeCode titles
r619 <div style="font-size:2.0em;margin: 10px">RhodeCode</div>
renamed project to rhodecode
r547 <h1 class="error_message">${c.error_message}</h1>
<p>${c.error_explanation}</p>
#38 updated RhodeCode titles
r619
renamed project to rhodecode
r547 %if c.redirect_time:
<p>${_('You will be redirected to %s in %s seconds') % (c.redirect_module,c.redirect_time)}</p>
%endif
</div>
</div>
<!-- end login -->
</div>
</body>
</html>