summaryrefslogtreecommitdiff
path: root/templates/changepw/base_m.html
diff options
context:
space:
mode:
authorJohan Lundberg <lundberg@nordu.net>2011-05-27 15:09:44 +0200
committerJohan Lundberg <lundberg@nordu.net>2011-05-27 15:09:44 +0200
commita389359b74e842702fbb76ba31f2608c4a141c63 (patch)
treea5f6b84fe54b9d9f345a9b856c99718156756ca9 /templates/changepw/base_m.html
parent1fcfc08280991ac25afcf78723340279ac79594f (diff)
Added templates for mobile devices.
Diffstat (limited to 'templates/changepw/base_m.html')
-rw-r--r--templates/changepw/base_m.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/changepw/base_m.html b/templates/changepw/base_m.html
new file mode 100644
index 0000000..130719e
--- /dev/null
+++ b/templates/changepw/base_m.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta name="apple-mobile-web-app-capable" content="yes" />
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+ <title>{% block title %}{% endblock %}</title>
+ <!-- <link rel="apple-touch-icon" href="{{ MEDIA_URL }}img/ios-icon.png" /> -->
+ <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css" />
+ <script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
+ <script src="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.js"></script>
+ {% block js %}{% endblock %}
+</head>
+
+<body>
+<div data-role="page" data-theme="b">
+ <header data-role="header" data-theme="b">
+ {% block header %}{% endblock %}
+ </header>
+ <div data-role="content" data-theme="b">
+ {% block content %}{% endblock %}
+ </div>
+ <footer data-role="footer" class="ui-bar" data-theme="b">
+ {% block footer %}{% endblock %}
+ </footer>
+</div>
+</body>
+</html>