summaryrefslogtreecommitdiff
path: root/pages/error.ecpp
diff options
context:
space:
mode:
authorSascha Volkenandt <sascha (at) akv-soft (dot) de>2007-01-06 23:31:48 +0000
committerSascha Volkenandt <sascha (at) akv-soft (dot) de>2007-01-06 23:31:48 +0000
commit61588887f4a8ea546188b95ddbb5785a816c3643 (patch)
tree26b6ee560b7e626bbd5f01a359eb99881d660376 /pages/error.ecpp
parent32166b92325891d2c7c1f2e004d13c5e57065a78 (diff)
downloadvdr-plugin-live-61588887f4a8ea546188b95ddbb5785a816c3643.tar.gz
vdr-plugin-live-61588887f4a8ea546188b95ddbb5785a816c3643.tar.bz2
- added error widget
Diffstat (limited to 'pages/error.ecpp')
-rw-r--r--pages/error.ecpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/pages/error.ecpp b/pages/error.ecpp
new file mode 100644
index 0000000..241f1a6
--- /dev/null
+++ b/pages/error.ecpp
@@ -0,0 +1,25 @@
+<%args>
+errorTitle;
+errorMessage;
+</%args>
+<%request scope="global">
+std::string pageTitle;
+</%request>
+<html>
+ <head>
+ <title>VDR-Live - <$ pageTitle $></title>
+ <link rel="stylesheet" type="text/css" href="/styles.css" />
+ </head>
+ <body>
+ <div class="left_area">
+ <img src="logo.png" alt="VDR Live!" border="0" />
+ <& menu >
+ </div>
+ <div class="inhalt">
+ <div class="head_box">
+ <$ pageTitle $>
+ </div>
+ <& error_widget errorTitle=(errorTitle) errorMessage=(errorMessage) &>
+ </div>
+ </body>
+</html>