-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.37 KB
/
Copy pathindex.html
File metadata and controls
43 lines (42 loc) · 1.37 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>GSUI testing</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width"/>
<meta name="description" content="GridSound's UI components"/>
<link rel="shortcut icon" href="assets/ico.svg"/>
<link rel="stylesheet" href="assets/fonts/fonts.css"/>
<link rel="stylesheet" href="gsui.css"/>
<link rel="stylesheet" href="gsui-gray.css"/>
<link rel="stylesheet" href="gsui-white.css"/>
<link rel="stylesheet" href="gsuiCursor/gsuiCursor.css"/>
<link rel="stylesheet" href="test-assets/test.css"/>
</head>
<body>
<script src="gs-utils/gs-utils.js"></script>
<script src="gs-utils/gs-utils-json.js"></script>
<script src="gs-utils/gs-utils-jquery.js"></script>
<script src="gsui-constantes.js"></script>
<script src="test-assets/componentList.js"></script>
<script>
"use strict";
$body.$setAttr( "data-skin", localStorage.getItem( "skin" ) || "gray" )
.$append(
$.$div( { id: "title" },
$.$bold( null, "GridSound" ),
$.$span( null, "ui-components" ),
),
$.$div( { id: "testLinks" },
$.$link( { href: "gsds.html" }, "classic-design-system" ),
componentList.map( s => $.$link( { href: `try#${ s }` }, s ) ),
),
$.$div( { id: "footer" },
$.$span( null, `© ${ new Date().getFullYear() } ` ),
$.$link( { href: GSURL.$gs }, "gridsound.com" ),
$.$span( null, " all rights reserved" ),
),
);
</script>
</body>
</html>