Skip to content

Commit b2eb072

Browse files
committed
feat(quickstart): Add index-cdn.html
1 parent 4b90286 commit b2eb072

File tree

6 files changed

+57
-3
lines changed

6 files changed

+57
-3
lines changed

packages/quickstart/steps/01/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Let's get you ready for your journey! We bootstrap OpenUI5 in an HTML page and i
1313

1414
<sup>*The browser shows a "Ready" button that triggers a "Hello World" message*</sup>
1515

16-
You can access the live preview by clicking on this link: [🔗 Live Preview of Step 1](https://ui5.github.io/tutorials/quickstart/build/01/index.html).
16+
You can access the live preview by clicking on this link: [🔗 Live Preview of Step 1](https://ui5.github.io/tutorials/quickstart/build/01/index-cdn.html).
1717

1818
***
1919

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Quickstart Tutorial</title>
6+
<script id="sap-ui-bootstrap"
7+
src="https://sdk.openui5.org/resources/sap-ui-core.js"
8+
data-sap-ui-libs="sap.m"
9+
data-sap-ui-compat-version="edge"
10+
data-sap-ui-async="true"
11+
data-sap-ui-on-init="module:ui5/quickstart/index"
12+
data-sap-ui-resource-roots='{
13+
"ui5.quickstart": "./"
14+
}'>
15+
</script>
16+
</head>
17+
<body class="sapUiBody" id="content"></body>
18+
</html>

packages/quickstart/steps/02/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Now we extend our minimalist HTML page to a basic app with a view and a controll
1313

1414
<sup>*The browser shows a Steady button in an app*</sup>
1515

16-
You can access the live preview by clicking on this link: [🔗 Live Preview of Step 2](https://ui5.github.io/tutorials/quickstart/build/02/index.html).
16+
You can access the live preview by clicking on this link: [🔗 Live Preview of Step 2](https://ui5.github.io/tutorials/quickstart/build/02/index-cdn.html).
1717

1818
***
1919

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Quickstart Tutorial</title>
6+
<script id="sap-ui-bootstrap"
7+
src="https://sdk.openui5.org/resources/sap-ui-core.js"
8+
data-sap-ui-libs="sap.m"
9+
data-sap-ui-compat-version="edge"
10+
data-sap-ui-async="true"
11+
data-sap-ui-on-init="module:ui5/quickstart/index"
12+
data-sap-ui-resource-roots='{
13+
"ui5.quickstart": "./"
14+
}'>
15+
</script>
16+
</head>
17+
<body class="sapUiBody" id="content"></body>
18+
</html>

packages/quickstart/steps/03/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Finally, we add a second page to our app showcasing some of the key OpenUI5 conc
1313

1414
<sup>*The second page shows plenty of UI controls and concepts to explore*</sup>
1515

16-
You can access the live preview by clicking on this link: [🔗 Live Preview of Step 3](https://ui5.github.io/tutorials/quickstart/build/03/index.html).
16+
You can access the live preview by clicking on this link: [🔗 Live Preview of Step 3](https://ui5.github.io/tutorials/quickstart/build/03/index-cdn.html).
1717

1818
***
1919

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Quickstart Tutorial</title>
6+
<script id="sap-ui-bootstrap"
7+
src="https://sdk.openui5.org/resources/sap-ui-core.js"
8+
data-sap-ui-libs="sap.m"
9+
data-sap-ui-compat-version="edge"
10+
data-sap-ui-async="true"
11+
data-sap-ui-on-init="module:ui5/quickstart/index"
12+
data-sap-ui-resource-roots='{
13+
"ui5.quickstart": "./"
14+
}'>
15+
</script>
16+
</head>
17+
<body class="sapUiBody" id="content"></body>
18+
</html>

0 commit comments

Comments
 (0)