-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·30 lines (28 loc) · 1.03 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
<!DOCTYPE html>
<!--*
* UIBase Web Application Front-end Framework - Application Default Webpage
* <http://www.uibase.net> | License: <http://www.uibase.net/license>
* Copyright 2009-2013 Usable Bytes Pvt Ltd
* @authors Debjit Biswas (@debjitbis08) and Kumar Bhot (@UsableBytes)
*
*-->
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>UIBase</title>
<!-- Add your local server path to UIBase here -->
<base href="/" />
<script type="text/javascript" src="/dist/uibase.js"></script>
<script type="text/javascript" src="/dist/uibase-components.js"></script>
<script>
(function() {
var ub = (typeof require === 'function' && require('uibase')) || window.uibase;
if (ub) ub.init();
})();
</script>
</head>
<body class="uibase">
Hello UI World
</body>
</html>