26 lines
929 B
HTML
26 lines
929 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Deluge: Web UI (alpha) ${version}</title>
|
|
|
|
<link rel="shortcut icon" href="/icons/deluge.png" type="image/png" />
|
|
<link rel="icon" href="/icons/deluge.png" type="image/png" />
|
|
|
|
<!-- Stylesheets -->
|
|
% for stylesheet in stylesheets:
|
|
<link rel="stylesheet" type="text/css" href="${stylesheet}" />
|
|
% endfor
|
|
|
|
<!-- Javascript -->
|
|
% for script in scripts:
|
|
<script type="text/javascript" src="${script}"></script>
|
|
% endfor
|
|
<script type="text/javascript">
|
|
Deluge.debug = ${str(debug).lower()};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div style="background-image: url('/themes/default/tree/loading.gif');"></div>
|
|
</body>
|
|
</html>
|