angular/aio/content/examples/upgrade-phonecat-3-final/index.html
Mateusz Daniluk de777afbc5 refactor: standardize doctype declaration to <!DOCTYPE html> (#51052)
This commit standardizes the doctype declaration across all HTML files in the project to use `<!DOCTYPE html>`

PR Close #51052
2024-02-01 19:29:46 +00:00

34 lines
1 KiB
HTML

<!-- #docplaster -->
<!-- #docregion full -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<base href="/app/">
<title>Google Phone Gallery</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<link rel="stylesheet" href="app.css" />
<script src="/node_modules/core-js/client/shim.min.js"></script>
<script src="/node_modules/zone.js/bundles/zone.umd.js"></script>
<script src="/node_modules/systemjs/dist/system.src.js"></script>
<!-- #enddocregion full -->
<script src="/systemjs.config.1.js"></script>
<!-- #docregion full
<script src="/systemjs.config.js"></script>
<script>
System.import('/app');
</script>
<!-- #enddocregion full -->
<script>
System.import('/app');
</script>
<!-- #docregion full -->
</head>
<!-- #docregion appcomponent -->
<body>
<phonecat-app></phonecat-app>
</body>
<!-- #enddocregion appcomponent -->
</html>
<!-- #enddocregion full -->