summaryrefslogtreecommitdiffstats
path: root/module/web/templates/mobile/base.html
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-09-18 17:59:50 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-09-18 17:59:50 +0200
commit6130a2377ca6754fee88773097ce220abef1aa47 (patch)
tree76bea0d76393100fcf393c164c96d34f286aba7a /module/web/templates/mobile/base.html
parentAdded DuckcryptInfo decrypter, smaller fixes (diff)
parentdropdowns in navbar (diff)
downloadpyload-6130a2377ca6754fee88773097ce220abef1aa47.tar.xz
merged stable into default
Diffstat (limited to 'module/web/templates/mobile/base.html')
-rw-r--r--module/web/templates/mobile/base.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/module/web/templates/mobile/base.html b/module/web/templates/mobile/base.html
new file mode 100644
index 000000000..95d824730
--- /dev/null
+++ b/module/web/templates/mobile/base.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8">
+ <title>{% block title %}pyLoad {{ _("Webinterface") }}{% endblock %}</title>
+ <meta name="description" content="">
+ <meta name="HandheldFriendly" content="True">
+ <meta name="MobileOptimized" content="320">
+ <meta name="viewport" content="width=device-width">
+ <meta http-equiv="cleartype" content="on">
+
+ <link rel="shortcut icon" href="img/touch/apple-touch-icon.png">
+ <link href="static/css/font.css" rel="stylesheet" type="text/css"/>
+ {# TODO: Needs cleanup #}
+ <link rel="stylesheet" href="/static/css/mobile/style.css">
+
+ <script type="text/javascript" data-main="static/js/mobile" src="static/js/libs/require-2.0.6.js"></script>
+ {% block head %}
+ {% endblock %}
+</head>
+<body class="viewport">
+<div id="wrap">
+<header>
+ <div class="logo"></div>
+ <span class="title">pyLoad</span>
+</header>
+<div id="content">
+ <h2>Tech Demo</h2>
+ <h3>In Development</h3>
+</div>
+</div>
+<footer>
+ Tab Bar
+</footer>
+<script>
+ require(['mobile'], function (App) {
+ App.init();
+ });
+</script>
+</body>
+</html>