mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit standardizes the doctype declaration across all HTML files in the project to use `<!DOCTYPE html>` PR Close #51052
34 lines
1 KiB
HTML
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 -->
|