2016-03-12 19:53:19 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2016-05-11 03:33:58 +08:00
|
|
|
<base href="/"/>
|
2016-03-12 19:53:19 +08:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>PiGallery2</title>
|
2016-04-19 03:27:15 +08:00
|
|
|
<link rel="shortcut icon" href="icon.png">
|
2016-03-12 19:53:19 +08:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2016-05-01 16:28:05 +08:00
|
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"
|
|
|
|
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
|
|
|
|
crossorigin="anonymous">
|
2016-12-27 06:36:38 +08:00
|
|
|
<!-- Polyfill(s) for older browsers -->
|
|
|
|
<script src="node_modules/core-js/client/shim.min.js"></script>
|
2016-05-01 00:01:54 +08:00
|
|
|
|
2016-12-27 06:36:38 +08:00
|
|
|
<script src="node_modules/zone.js/dist/zone.js"></script>
|
|
|
|
<script src="node_modules/reflect-metadata/Reflect.js"></script>
|
|
|
|
<script src="node_modules/systemjs/dist/system.src.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
var ServerInject = {
|
|
|
|
user: <%- JSON.stringify(user); %>,
|
|
|
|
ConfigInject: <%- JSON.stringify(clientConfig); %>
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<script src="systemjs.config.js"></script>
|
|
|
|
<script>
|
|
|
|
System.import('').catch(function (err) {
|
|
|
|
console.error(err);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
2016-05-01 00:01:54 +08:00
|
|
|
|
2016-05-10 01:14:33 +08:00
|
|
|
<body style="overflow-y: scroll">
|
2016-03-12 21:57:22 +08:00
|
|
|
<pi-gallery2-app>Loading...</pi-gallery2-app>
|
2016-03-12 19:53:19 +08:00
|
|
|
</body>
|
|
|
|
</html>
|