-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (51 loc) · 2.33 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
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>Sencha | Ext JS 7.0 Examples</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=10, user-scalable=yes">
<link rel="icon" href="resources/images/favicon.png" type="image/png">
<link rel="stylesheet" type="text/css" href="main.css"/>
<link rel="stylesheet" type="text/css" href="resources/Sencha-Examples/style.css"/>
<script src="examples.js"></script>
<script src="main.js"></script>
</head>
<body>
<div id="title">
<div class="wrap">
<a id="title-logo" href="http://sencha.com"></a>
<ul id="title-menu">
<li id="title-button"><a href="javascript:void(0);" onclick="toggleMenu()">☰</a></li>
<li class="item"><a href="http://docs.sencha.com/ext">Documentation</a></li>
<li class="item"><a href="../release-notes.html">Releases Notes</a></li>
<li class="item"><a href="http://docs.sencha.com/extjs/7.0.0/guides/whats_new/extjs_upgrade_guide.html">Upgrade Overview</a></li>
</ul>
</div>
</div>
<div id="header">
<div class="wrap">
<div id="header-title">
Ext JS Examples
</div>
<div id="header-image">
<img src="resources/images/examples.png"/>
</div>
<div id="header-text">
Ext JS provides the industry's most comprehensive collection of high-performance,
customizable UI widgets - including HTML5 grids, trees, lists, forms, menus, toolbars,
panels, windows, and much more. Ext JS leverages HTML5 features on modern browsers
while maintaining compatibility and functionality for legacy browsers. Use these
examples to build your cross-platform apps for desktop, tablets, and smartphones.
</div>
</div>
</div>
<div id="body"></div>
<div id="footer">
<div class="wrap">
©2006-<span id="this-year"></span> Sencha Inc. All rights reserved.
</div>
</div>
<script>document.getElementById('this-year').innerHTML = (new Date()).getFullYear();</script>
</body>
</html>