Ajout : ./garradin
[garradin.git] / templates / error.tpl
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5 <title>Erreur</title>
6 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7 <style type="text/css">
8 {literal}
9 * { margin: 0; padding: 0; }
10
11 html { width: 100%; height: 100%; }
12 body {
13 font-size: 100%;
14 color: #000;
15 font-family: "Trebuchet MS", Helvetica, Sans-serif;
16 background: #fff;
17 padding: 1em;
18 }
19
20 h1 { color: #9c4f15; margin-bottom: 10px; }
21
22 p.error {
23 border: 1px solid #c00;
24 background: #fcc;
25 padding: 0.5em;
26 margin-bottom: 1em;
27 }
28 {/literal}
29 </style>
30 </head>
31
32 <body>
33
34 <h1>Erreur</h1>
35
36 <p class="error">
37 {$error|escape}
38 </p>
39
40 <p>
41 <a href="{$www_url}" onclick="history.back(); return false;">&larr; Retour</a>
42 </p>
43
44 </body>
45 </html>