generator-openui5
Version:
OpenUI5 generator for yeoman
37 lines (29 loc) • 857 B
HTML
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="UTF-8">
<title><%= applicationName %></title>
<script id="sap-ui-bootstrap"
src="<%= openUI5Location %>"
data-sap-ui-libs="sap.m"
data-sap-ui-theme="sap_bluecrystal"
data-sap-ui-xx-bindingSyntax="complex"
data-sap-ui-resourceroots='{
"<%= fioriComponentNamespace %>": "./"
}'> /* endOfResourceroots */
</script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script>
sap.ui.getCore().attachInit(function() {
new sap.m.Shell({
app: new sap.ui.core.ComponentContainer({
height : "100%",
name : "<%= fioriComponentNamespace %>"
})
}).placeAt("content");
});
</script>
</head>
<body class="sapUiBody" id="content" />
</html>