This repository was archived by the owner on Mar 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (67 loc) · 2.65 KB
/
index.html
File metadata and controls
81 lines (67 loc) · 2.65 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Polygigs</title>
<!-- The rest of the meta is added dynamically with <social-meta> -->
<meta property="og:site_name" content="Polygigs">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@Polygigs">
<link rel="manifest" href="/manifest.json">
<link rel="sitemap" type="application/xml" title="Polygigs" href="/sitemap.xml">
<link rel="alternate" type="application/rss+xml" title="New PolyGigs Jobs" href="/gigs.rss">
<script src="/bower_components/raven-js/dist/raven.min.js"></script>
<script>
Raven.config('https://197ee557639a465da1c7e548d1d4c454@sentry.io/122860').install();
window.Polymer = {
dom: 'shadow',
lazyRegister: true
};
(function() {
'use strict';
var onload = function() {
if (!window.HTMLImports) {
document.dispatchEvent(
new CustomEvent('WebComponentsReady', {bubbles: true})
);
}
(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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-71218005-2', 'auto');
ga('send', 'pageview');
};
var webComponentsSupported = (
'registerElement' in document
&& 'import' in document.createElement('link')
&& 'content' in document.createElement('template')
);
if (!webComponentsSupported) {
var script = document.createElement('script');
script.async = true;
script.src = '/bower_components/webcomponentsjs/webcomponents-lite.min.js';
script.onload = onload;
document.head.appendChild(script);
} else {
// For native imports, manually fire WebComponentsReady so user code
// can use the same code path for native and polyfill'd imports.
onload();
}
})();
</script>
<link rel="import" href="/src/pg-app.html">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #fff;
}
</style>
</head>
<body>
<pg-app></pg-app>
</body>
</html>