-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.ejs
91 lines (86 loc) · 3.14 KB
/
index.ejs
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<base href="/" />
<title>Campus Contacts</title>
<meta
name="description"
content="A simple contact management tool to find, connect, and communicate with people on your campus"
/>
<link
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600"
rel="stylesheet"
/>
<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',
);
</script>
<script src="https://global.oktacdn.com/okta-auth-js/6.5.1/okta-auth-js.min.js" type="text/javascript"></script>
<script>
window.oktaAuth = '';
</script>
</head>
<body
class="bg-pivot-gray"
ng-cloak
ng-app="campusContactsApp"
ng-class="{
'overflow-hidden-s': $root.showPeopleFilters
}"
>
<ui-view></ui-view>
<script>
// Disable the help scout beacon if the user is taking a survey
if (
!window.location.origin.includes('mhub.cc') &&
!window.location.origin.includes('ccontacts.app')
) {
!(function (e, t, n) {
function a() {
var e = t.getElementsByTagName('script')[0],
n = t.createElement('script');
(n.type = 'text/javascript'),
(n.async = !0),
(n.src = 'https://beacon-v2.helpscout.net'),
e.parentNode.insertBefore(n, e);
}
if (
((e.Beacon = n = function (t, n, a) {
e.Beacon.readyQueue.push({
method: t,
options: n,
data: a,
});
}),
(n.readyQueue = []),
'complete' === t.readyState)
)
return a();
e.attachEvent
? e.attachEvent('onload', a)
: e.addEventListener('load', a, !1);
})(window, document, window.Beacon || function () {});
window.Beacon('init', '952a71ad-7030-40ef-9c19-fb4baa579035');
}
</script>
</body>
</html>