forked from webchick/d8ws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (41 loc) · 1.49 KB
/
index.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>
<meta charset="utf-8" />
<title>Drupal 8 Web Services Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.3/jquery.mobile-1.4.3.min.css" />
<link rel="apple-touch-icon" href="drupal-8-logo.png">
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.3/jquery.mobile-1.4.3.min.js"></script>
<script src="https://raw.githubusercontent.com/CameronAskew/jquery.mobile.paramsHandler/master/src/jquery.mobile.paramsHandler-1.4.2.js"></script>
<!-- Custom JS goes here. -->
<script src="app.js"></script>
</head>
<body>
<div data-role="page" id="list">
<div data-role="header" data-theme="b">
<h1>Content</h1>
</div>
<div role="main" class="ui-content">
<ul id="content-list" data-role="listview" data-filter="true" data-filter-placeholder="Search content..." data-inset="true" data-split-icon="edit">
</ul>
</div>
</div>
<div data-role="page" id="view">
<div data-role="header" data-theme="b" data-add-back-btn="true">
<h1>View</h1>
</div>
<div role="main" class="ui-content">
<!-- This will get populated from the list page. -->
<div id="nid"></div>
<h2 id="title">Node Title</h2>
<!-- Temporary placeholder image. :) -->
<img id="image" src="http://placekitten.com/g/200/300" alt="Alt Text" />
<p id="body">
Lorem Ipsum etc.
</p>
</div>
</div>
</body>
</html>