forked from Leidenschaft/Deutsch-Lernen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_mobile.html
36 lines (33 loc) · 1.12 KB
/
index_mobile.html
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
29
30
31
32
33
34
35
36
<!--html5-->
<html>
<head>
<title>Klick Auf Deutsch Hilfe</title>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="utf-8">
<link rel=stylesheet href=css/jquery.mobile-1.4.5.min.css>
<script src=js/jquery-1.9.1.min.js></script>
<script src=js/jquery.mobile-1.4.5.min.js></script>
<script src=js/add_word_list_for_mobile.js></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Welcome to use Deutsch Hilfe</h1>
</div>
<div role="main" class="ui-content">
<form class="ui-filterable">
<input id="autocomplete-input" data-type="search" placeholder="Search words...">
</form>
<ul data-role="listview" data-filter="true" data-filter-reveal="true" data-input="#autocomplete-input" data-inset="true" id="index_listview">
<!--mobile Chrome can not load xslt, and direct html should be prepared instead?
<li>
<a href="Wort_html_for_mobile/1.html">Abend</a>
</li>
-->
</ul>
</div><!-- /content -->
<div data-role="footer">
<h1>Open Source Project</h1>
</div>
</div>
</body>
</html>