Ticket #1339: index.html

File index.html, 1.6 KB (added by bcode, 14 years ago)

Patched WebUI index.html

Line 
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">
3    <head>
4        <title>Deluge: Web UI ${version}</title>
5       
6        <link rel="shortcut icon" href="${base}icons/deluge.png" type="image/png" />
7        <link rel="icon" href="${base}icons/deluge.png" type="image/png" />
8                <link rel="apple-touch-icon-precomposed" media="screen and (resolution: 163dpi)" href="${base}icons/iOS-Precomposed-57.png" />
9                <link rel="apple-touch-icon-precomposed" media="screen and (resolution: 132dpi)" href="${base}icons/iOS-Precomposed-72.png" />
10                <link rel="apple-touch-icon-precomposed" media="screen and (resolution: 326dpi)" href="${base}icons/iOS-Precomposed-114.png" />
11       
12        <!-- Stylesheets -->
13        % for stylesheet in stylesheets:
14        <link rel="stylesheet" type="text/css" href="${base}${stylesheet}" />
15        % endfor
16
17        <script type="text/javascript">
18                deluge = {
19                        author: 'Damien Churchill <damoxc@gmail.com>',
20                        version: '${version}',
21                        config: ${js_config}
22                }
23        </script>
24
25        <!-- Javascript -->
26        % for script in scripts:
27        <script type="text/javascript" src="${base}${script}"></script>
28        % endfor
29        <script type="text/javascript">
30            Deluge.debug = ${str(debug).lower()};
31        </script>
32    </head>
33    <body>
34        <div style="background-image: url('${base}themes/default/tree/loading.gif');"></div>
35
36                <!-- Preload icon classes -->
37                <div class="ext-mb-error"></div>
38                <div class="icon-ok"></div>
39    </body>
40</html>