-
Notifications
You must be signed in to change notification settings - Fork 0
/
list-apotheek.html
49 lines (49 loc) · 1.54 KB
/
list-apotheek.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
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>Dokter in Gent</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css" />
<script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
</head>
<body>
<div id="app">
<div data-role="page" id="home">
<div data-role="header" role="banner">
<h1>Apotheken</h1>
</div><!-- /header -->
<div data-role="content">
<ul data-role="listview">
<li>
<div class="ui-btn-text">
<a href="apotheek-detail.html" class="ui-link-inherit">
<h3 class="ui-li-heading">Kortedagsteeg 1, 9000 Gent</h3>
<p class="ui-li-desc">Antonis R., 312m ver</p>
</a>
</div>
</li>
<li>
<div class="ui-btn-text">
<a href="apotheek-detail.html" class="ui-link-inherit">
<h3 class="ui-li-heading">Overpoortstraat 45, 9000 Gent</h3>
<p class="ui-li-desc">Creus N., 3323m ver</p>
</a>
</div>
</li>
<li>
<div class="ui-btn-text">
<a href="apotheek-detail.html" class="ui-link-inherit">
<h3 class="ui-li-heading">Clarissenstraat 1, 9000 Gent</h3>
<p class="ui-li-desc">Callebaut K., 4468m ver</p>
</a>
</div>
</li>
</ul>
</div><!-- /content -->
<div data-role="footer" class="ui-bar">
<a href="#" data-role="button" data-icon="grid">Alle</a>
<a href="#" data-role="button">Van wacht</a>
<a href="#" data-role="button">Ververs locatie</a>
</div><!-- /footer -->
</div>
</div>