mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
9d1d742f1b
This should also be safe on any html file that isn't an angular template
17 lines
406 B
HTML
17 lines
406 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Angular Examples</title>
|
|
<base href="/" />
|
|
|
|
<!-- Prevent the browser from requesting any favicon. This could throw off the console
|
|
output checks. -->
|
|
<link rel="icon" href="data:," />
|
|
</head>
|
|
<body>
|
|
<example-app>Loading...</example-app>
|
|
<script src="/app_bundle.js"></script>
|
|
</body>
|
|
</html>
|