31 lines
905 B
HTML
31 lines
905 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<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.0" />
|
|
<title>Bookshop</title>
|
|
|
|
<script>
|
|
window["sap-ushell-config"] = {
|
|
defaultRenderer: "fiori2",
|
|
applications: {},
|
|
};
|
|
</script>
|
|
|
|
<script id="sap-ushell-bootstrap" src="https://ui5.sap.com/test-resources/sap/ushell/bootstrap/sandbox.js"></script>
|
|
<script id="sap-ui-bootstrap" src="https://ui5.sap.com/resources/sap-ui-core.js"
|
|
data-sap-ui-libs="sap.m, sap.ushell, sap.collaboration, sap.ui.layout" data-sap-ui-compatVersion="edge"
|
|
data-sap-ui-theme="sap_horizon"></script>
|
|
<script>
|
|
sap.ui.getCore().attachInit(() =>
|
|
sap.ushell.Container.createRenderer().placeAt("content")
|
|
);
|
|
</script>
|
|
</head>
|
|
|
|
<body class="sapUiBody" id="content">
|
|
</body>
|
|
|
|
</html> |