-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.production.html
70 lines (66 loc) · 3.26 KB
/
index.production.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<base href="/">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" />
<script src="node_modules/angular2/bundles/angular2-polyfills.min.js"></script>
<script src="node_modules/systemjs/dist/system.js"></script>
<script src="node_modules/rxjs/bundles/Rx.min.js"></script>
<script src="node_modules/angular2/bundles/angular2.js"></script>
<script src="node_modules/angular2/bundles/http.min.js"></script>
<script src="node_modules/angular2/bundles/router.min.js"></script>
<script src="node_modules/moment/min/moment.min.js"></script>
<script src="node_modules/rxjs/bundles/rx.min.js"></script>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:400,900">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<title>KPI Exporter 2.0</title>
<meta name="description" content="Tool for exporting NTUU KPI university schedule to Google Calendar">
<meta name="keywords" content="КПІ. НТУУ КПІ, Сікорського, Політех, Політехнічний, kpi, export, schedule, rozklad, розклад, експорт, гугл, календар, google, calendar, тулза, расписание">
<meta name="author" content="Oleksandr (Sasha) Sochka">
<meta name="robots" content="index, follow">
<style>
html, body {
width: 100%;
height: 100%;
background-color: #6f5499;
color: white;
}
</style>
<script>
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
},
});
System.import('app/boot')
.then(null, console.error.bind(console));
System.import('angular2/core')
.then(function (core) {
core.enableProdMode();
});
</script>
<script>
var appInsights=window.appInsights||function(config){
function r(config){t[config]=function(){var i=arguments;t.queue.push(function(){t[config].apply(t,i)})}}var t={config:config},u=document,e=window,o="script",s=u.createElement(o),i,f;for(s.src=config.url||"//az416426.vo.msecnd.net/scripts/a/ai.0.js",u.getElementsByTagName(o)[0].parentNode.appendChild(s),t.cookie=u.cookie,t.queue=[],i=["Event","Exception","Metric","PageView","Trace"];i.length;)r("track"+i.pop());return r("setAuthenticatedUserContext"),r("clearAuthenticatedUserContext"),config.disableExceptionTracking||(i="onerror",r("_"+i),f=e[i],e[i]=function(config,r,u,e,o){var s=f&&f(config,r,u,e,o);return s!==!0&&t["_"+i](config,r,u,e,o),s}),t
}({
instrumentationKey:"128ce831-0196-468a-945d-9dcd34992fcf"
});
window.appInsights=appInsights;
appInsights.trackPageView();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-72828796-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<app></app>
</body>
</html>