blob: 130719edff37d6e50007fda0e4d4cc8b16e61068 (
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
26
27
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>
|