blob: 241f1a6fcbdf5f90ae69bc246fb38c02ab2d7875 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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>
|