forked from vijay00m/UI5SplitApp-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (37 loc) · 1.27 KB
/
index.html
File metadata and controls
47 lines (37 loc) · 1.27 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
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="UTF-8">
<title>UI5 Boilerplate</title>
<!-- UI5 Bootstrap with OpenUI5 -->
<script id="sap-ui-bootstrap" type="text/javascript"
src="https://openui5.netweaver.ondemand.com/resources/sap-ui-core.js"
data-sap-ui-theme="sap_bluecrystal"
data-sap-ui-xx-bindingSyntax="complex"
data-sap-ui-libs="sap.m"
data-sap-ui-resourceroots='{
"ui5bp": "./"
}'> >
</script>
<!-- alternative SAPUI5/OpenUI5 locations
//OpenUI5
src="https://openui5.netweaver.ondemand.com/resources/sap-ui-core.js"
//use SAPUI5 from SAP HANACloud
src="https://sapui5.hana.ondemand.com/resources/sap-ui-core.js"
//within Eclipse with SAP UI Development Toolkit for HTML5
src="resources/sap-ui-core.js"
//serve locally with Node.js
src="http://localhost:8888/sapui5/1.18.11/resources/sap-ui-core.js"
-->
<!-- Custom Styles -->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script>
sap.ui.getCore().attachInit(function() {
sap.ui.jsview("RootView", "ui5bp.view.App").placeAt('root');
});
</script>
</head>
<body class="sapUiBody" id="root">
</body>
</html>