2018-07-05 15:59:11 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2018-07-07 13:46:40 +00:00
|
|
|
|
2018-07-05 15:59:11 +00:00
|
|
|
<head>
|
2018-07-07 13:46:40 +00:00
|
|
|
<script>
|
|
|
|
// WARNING: DO NOT set the <base href> like this in production!
|
|
|
|
// Details: https://webdev.dartlang.org/angular/guide/router
|
|
|
|
(function () {
|
|
|
|
var m = document.location.pathname.match(/^(\/[-\w]+)+\/web($|\/)/);
|
|
|
|
document.write('<base href="' + (m ? m[0] : '/') + '" />');
|
|
|
|
}());
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<title>Hello Angular</title>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="styles.css">
|
2018-07-10 10:52:56 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700">
|
|
|
|
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
2018-07-07 13:46:40 +00:00
|
|
|
<link rel="icon" type="image/png" href="favicon.png">
|
|
|
|
|
|
|
|
<script defer src="main.dart.js"></script>
|
2018-07-05 15:59:11 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2018-07-07 13:46:40 +00:00
|
|
|
<my-app>Loading...</my-app>
|
2018-07-05 15:59:11 +00:00
|
|
|
|
|
|
|
</body>
|
2018-07-07 13:46:40 +00:00
|
|
|
|
2018-07-05 15:59:11 +00:00
|
|
|
</html>
|