partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 8050b9f80ecc4ec8878de60a7649bfbeafd20c13
parent af2ab0f8fb449cb56a9ef7c47337864e02c4af6d
Author: Felicitus <felicitus@felicitus.org>
Date:   Fri,  3 May 2013 10:59:35 +0200

Added lost error.tpl, fixes #259

Diffstat:
Asrc/frontend/templates/error.tpl | 25+++++++++++++++++++++++++
1 file changed, 25 insertions(+), 0 deletions(-)

diff --git a/src/frontend/templates/error.tpl b/src/frontend/templates/error.tpl @@ -0,0 +1,24 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" + "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> + <title>PartKeepr</title> + + + <link href="{% if https %}https{% else %}http{% endif %}://fonts.googleapis.com/css?family=Ubuntu:400,700italic" rel="stylesheet" type="text/css"> + + <!-- Include the ExtJS CSS Theme --> + <link rel="stylesheet" type="text/css" href="css/partkeepr-theme.css"/> + + <link rel="stylesheet" type="text/css" href="js/Ext.ux/statusbar/css/statusbar.css"/> + + <link rel="stylesheet" type="text/css" href="css/PartKeepr.css"/> + + <link rel="icon" href="favicon.ico"/> + </head> + <body> + <h1>{{ title }}</h1> + <p>{{ error }}</p> + </body> +</html>+ \ No newline at end of file