forked from ImageFlow/imageflow-prototype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.63 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WP Image Flow | Post Edit Screen</title>
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="css/style.css" />
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<div class="row">
<div class="large-6 columns">
<h1>WordPress Image Flow</h1>
<h2 class="subheader">Feature Plugin Prototype</h2>
<p>We have created scenarios involving using images in WordPress. They range from adding a new image to a post to creating a gallery. This prototype is the tool we have created to get user feedback and to prove out the new UX/UI ideas we have about image and media use within WordPress.</p>
</div>
<div class="large-6 columns" id="toc-wrapper">
<dl id="table-of-contents">
<dt><a title="Link to Prototype Scenario to Add a New Image to a Post" href="scenario1/">Scenario 1</a></dt>
<dd>Add a New Image to a Post</dd>
<dt><a title="Link to Prototype Scenario to Add a Existing Image to a Post" href="scenario2/">Scenario 2</a></dt>
<dd>Add an Existing Image to a Post</dd>
<dt>Scenario 3</dt>
<dd>Edit and Add an Existing Image to a Post</dd>
<dt>Scenario 4</dt>
<dd>Create A Gallery and Insert into Post</dd>
<dt>Scenario 5</dt>
<dd>Insert Multiple Items into Post</dd>
<dt>Scenario 6</dt>
<dd>Edit Image that has been Inserted</dd>
</dl>
</div>
</div>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>