Files
week-organizer-app/webapp/index.html
T

40 lines
1.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Week Organizer</title>
<style>
html,
body,
body > div,
#container,
#container-uiarea {
height: 100%;
}
</style>
<script
id="sap-ui-bootstrap"
src="resources/sap-ui-core.js"
data-sap-ui-theme="sap_horizon"
data-sap-ui-resource-roots='{
"de.paulvincenthorn.weekorganizer.weekorganizerapp": "./"
}'
data-sap-ui-on-init="module:sap/ui/core/ComponentSupport"
data-sap-ui-compat-version="edge"
data-sap-ui-async="true"
data-sap-ui-frame-options="trusted"
></script>
</head>
<body class="sapUiBody sapUiSizeCompact" id="content">
<div
data-sap-ui-component
data-name="de.paulvincenthorn.weekorganizer.weekorganizerapp"
data-id="container"
data-settings='{"id" : "de.paulvincenthorn.weekorganizer.weekorganizerapp"}'
data-handle-validation="true"
></div>
</body>
</html>