Commit 3c1e2e657f3b679cf2b233b10485361018279a21

Authored by AntonioTerceiro
1 parent bcf2b01d

ActionItem172: adding a "system unavailable" screen


git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1563 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing 1 changed file with 45 additions and 0 deletions   Show diff stats
public/503.html 0 → 100644
... ... @@ -0,0 +1,45 @@
  1 +<html>
  2 + <head>
  3 + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  4 + <title>Noosfero - Application error</title>
  5 + <style>
  6 + body {
  7 + font-family: sans-serif;
  8 + padding: 100px 0 0 0;
  9 + background-color: #ff9;
  10 + }
  11 + h1 {
  12 + margin: 0px;
  13 + font-weight: bold;
  14 + text-align: center;
  15 + color: gray;
  16 + }
  17 + div#en {
  18 + float: right;
  19 + width: 45%;
  20 + }
  21 + div#pt-br {
  22 + float: left;
  23 + width: 45%;
  24 + }
  25 + </style>
  26 +</head>
  27 +<body>
  28 +
  29 +
  30 +<div id='en'>
  31 + <h1>System maintainance</h1>
  32 + <p>
  33 + This system is under maintainance. It should be back in a few hours.
  34 + </p>
  35 +</div>
  36 +
  37 +<div id='pt-br'>
  38 + <h1>Sistema em manutenção</h1>
  39 + </p>
  40 + Este sistema está em manutenção, e deve estar de volta em algumas horas.
  41 + </p>
  42 +</div>
  43 +
  44 +</body>
  45 +</html>
... ...