forked from fluid-project/floeproject.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui-options.html
158 lines (140 loc) · 8.41 KB
/
ui-options.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>UI Options | floe</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link type="image/x-icon" href="images/favicon.ico" rel="shortcut icon"/>
<!-- Foundation flex grid -->
<link href="lib/foundation/foundation.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" media="all" rel="stylesheet" type="text/css" />
<link href="css/print.css" media="print" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="lib/infusion/src/lib/normalize/css/normalize.css" />
<link rel="stylesheet" type="text/css" href="lib/infusion/src/framework/core/css/fluid.css" />
<link rel="stylesheet" type="text/css" href="lib/infusion/src/framework/preferences/css/Enactors.css" />
<link rel="stylesheet" type="text/css" href="lib/infusion/src/framework/preferences/css/PrefsEditor.css" />
<link rel="stylesheet" type="text/css" href="lib/infusion/src/framework/preferences/css/SeparatedPanelPrefsEditor.css" />
<!--[if lte IE 8]>
<script type="text/javascript">document.createElement("header")</script>
<script type="text/javascript">document.createElement("nav")</script>
<script type="text/javascript">document.createElement("footer")</script>
<script type="text/javascript">document.createElement("section")</script>
<script type="text/javascript">document.createElement("aside")</script>
<![endif]-->
<script type="text/javascript" src="lib/infusion/infusion-custom.js"></script>
<script type="text/javascript" src="js/floe.js"></script>
<script type="text/javascript" src="js/resources.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function () {
floe.setupUIO("");
});
</script>
<!-- BEGIN markup for Preference Editor -->
<div class="flc-prefsEditor-separatedPanel fl-prefsEditor-separatedPanel">
<!--
This div is for the sliding panel bar that shows and hides the Preference Editor controls in the mobile view.
A separate panel bar for mobile displays is needed to preserve the correct tab order.
-->
<div class="fl-panelBar fl-panelBar-smallScreen">
<span class="fl-prefsEditor-buttons">
<button class="flc-slidingPanel-toggleButton fl-prefsEditor-showHide"> Show/Hide</button>
<button class="flc-prefsEditor-reset fl-prefsEditor-reset"><span class="fl-icon-undo"></span> Reset</button>
</span>
</div>
<!-- This is the div that will contain the Preference Editor component -->
<div class="flc-slidingPanel-panel flc-prefsEditor-iframe"></div>
<!--
This div is for the sliding panel bar that shows and hides the Preference Editor controls in the desktop view.
A separate panel bar for desktop displays is needed to preserve the correct tab order.
-->
<div class="fl-panelBar fl-panelBar-wideScreen">
<span class="fl-prefsEditor-buttons">
<button class="flc-slidingPanel-toggleButton fl-prefsEditor-showHide"> Show/Hide</button>
<button class="flc-prefsEditor-reset fl-prefsEditor-reset"><span class="fl-icon-undo"></span> Reset</button>
</span>
</div>
</div>
<!-- END markup for Preference Editor -->
<div id="skip">
<a href="#content">Skip to Content</a>
</div>
<div class="floe">
<div class="row">
<div class="columns small-12 medium-12 large-7">
<header class="floe-header">
<h1><a rel="home" title="Home" href="index.html" class="floe-header-logo">floe
<span class="floe-header-tagline">
flexible learning for open education
</span></a>
</h1>
</header>
</div>
<div class="columns small-12 medium-12 large-5 align-self-bottom">
<nav class="floe-nav">
<ul>
<li><a href="./news/index.html">News</a></li>
<li><a href="./resources.html">Resources</a></li>
<li><a href="./ui-options.html">UI Options</a></li>
</ul>
</nav>
</div>
</div>
<div id="content" class="floe-content">
<div class="flc-toc-tocContainer toc"> </div>
<!-- Begin UI Options Information Container -->
<article>
<h2>About UI Options</h2>
<p>
User Interface Options (or UI Options) provides a way to enhance or improve website usability, flexibility, and accessibility by providing a way to customize and control aspects of a website without the need for additional software or tools. For those who design, build, or maintain websites, UI Options can also help reveal areas where the web content and structure can be changed to improve flexibility and robustness.
</p>
<h3>Get UI Options</h3>
<p>
For Wordpress: <a href="https://github.com/fluid-project/uio-wordpress-plugin">UI Options Wordpress Plugin</a>.
</p>
<p>
From source code: <a href="https://www.npmjs.com/package/infusion">using npm</a>, or <a href="https://github.com/fluid-project/infusion/releases">GitHub</a>.
</p>
<h3>Guides and Documentation</h3>
<p>
If installing UI Options using npm or from a release on GitHub (not applicable if using the Wordpress plugin), "<a href="https://docs.fluidproject.org/infusion/development/tutorial-userInterfaceOptions/UserInterfaceOptions.html">Setting Up User Interface Options</a>" will help installing and structuring your code.
</p>
<p>
Once UI Options is installed, <a href="https://docs.fluidproject.org/infusion/development/tutorial-userInterfaceOptions/WorkingWithUserInterfaceOptions.html">"Working with UI Options"</a> can help guide you through setting up your site's styles and markup to take advantage of UI Options.
</p>
</article>
<!-- End UI Options Information Container -->
</div>
<footer class="floe-footer">
<div class="floe-content row">
<div class="columns large-6 small-12">
<div>
<p>
Floe is a project of the
<a href="http://idrc.ocadu.ca">Inclusive Design Research Centre</a>, <a href="http://ocadu.ca">OCAD University</a>.<br/>
</p>
<p>
<span class="floe-hewlett-logo">Funded by a grant from <a href="http://www.hewlett.org">The William and Flora Hewlett Foundation</a>.</span>
</p>
</div>
</div>
<div class="columns large-6 small-12">
<address>
205 Richmond St. W., Second Floor<br/>
Toronto, Ontario, Canada<br/>
M5V 1V3<br/>
Telephone: (416) 977-6000 #3968<br/>
Fax: (416) 977-9844
</address>
<p>
<a href="mailto:[email protected]">Jutta Treviranus</a> Principal Investigator, Director and Professor<br/>
<a href="mailto:[email protected]">Jess Mitchell</a> Senior Manager, Research and Development<br/>
<a href="mailto:[email protected]">Colin Clark</a> Lead Software Architect
</p>
</div>
</div>
</footer>
</div>
</body>
</html>