This repository was archived by the owner on Nov 6, 2020. It is now read-only.
forked from GSA/code-gov-front-end
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (112 loc) · 5.97 KB
/
index.html
File metadata and controls
130 lines (112 loc) · 5.97 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<script>
// before anything else change ?p=/open-tasks to /open-tasks
if (window.location.search.indexOf('p=') > -1) {
var pattern = /(\?|&)p=[/a-z-_0-9]{3,500}/
const newSearch = window.location.search
.replace(pattern, '') // remove p=... param from url
.replace(/^./, '?'); // mark sure starting search param in a question mark
// newPathName is usually something like '/open-tasks'
const newPathName = (window.location.pathname + window.location.search.match(pattern)[0].substring(3)).replace('//','/')
// newUrl is usually something like .../federalist-stag/open-tasks?agencies=...
const newUrl = newPathName + newSearch
/* global history */
history.replaceState({}, 'title', newUrl);
}
</script>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<title>Code.gov — America’s Home for Open Source Projects from the Federal Government</title>
<meta name="description" content="We are America’s primary platform for aggregating Open Source Software from the federal government. With thousands of OSS projects made available, Code.gov offers you the opportunity to discover and contribute back to America’s code.">
<meta property="og:title" content="code.gov">
<meta property="og:site_name" content="Code.gov">
<meta property="og:image" content="<%= PUBLIC_PATH %>assets/img/og.jpg">
<meta property="og:image:url" content="<%= PUBLIC_PATH %>assets/img/og.jpg">
<meta property="og:image:type" content="image/jpeg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="600">
<meta property="twitter:image:src" content="https://code.gov/assets/img/og.jpg">
<meta property="twitter:image:width" content="1200">
<meta property="twitter:image:height" content="600">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@CodeDotGov">
<meta name="twitter:title" content="Code.gov">
<meta name="twitter:description" content="Code.gov is a platform designed to improve access to the federal government’s custom-developed software.">
<meta name="twitter:image" content="<%= PUBLIC_PATH %>assets/img/og.jpg">
<meta name="google-site-verification" content="FeV1oMKur5PZSGJtUKhKM5EnNGVXn3tTK13iUk_7NZc">
<link rel="image_src" type="image/jpeg" href="<%= PUBLIC_PATH %>assets/img/og.jpg">
</head>
<body>
<div id="app">
<div id="load-screen" style="background-color: rgb(0, 0, 56); color: white; bottom: 0; font-size: 24pt; left: 0; position: absolute; right: 0; text-align: center; top: 0">
<!-- https://en.wikipedia.org/wiki/File:Flag_of_the_United_States.svg -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200" viewBox="0 0 7410 3900" style="padding: 20px">
<rect width="7410" height="3900" fill="#b22234"></rect>
<path d="M0,450H7410m0,600H0m0,600H7410m0,600H0m0,600H7410m0,600H0" stroke="#fff" stroke-width="300"></path>
<rect width="2964" height="2100" fill="#3c3b6e"></rect>
<g fill="#fff">
<g id="s18">
<g id="s9">
<g id="s5">
<g id="s4">
<path id="s" d="M247,90 317.534230,307.082039 132.873218,172.917961H361.126782L176.465770,307.082039z"></path>
<use xlink:href="#s" y="420"></use>
<use xlink:href="#s" y="840"></use>
<use xlink:href="#s" y="1260"></use>
</g>
<use xlink:href="#s" y="1680"></use>
</g>
<use xlink:href="#s4" x="247" y="210"></use>
</g>
<use xlink:href="#s9" x="494"></use>
</g>
<use xlink:href="#s18" x="988"></use>
<use xlink:href="#s9" x="1976"></use>
<use xlink:href="#s5" x="2470"></use>
</g>
</svg>
<noscript>
<p>You appear to have JavaScript disabled. Please enable JavaScript to use this site.</p>
</noscript>
</div>
</div>
<script src="<%= PUBLIC_PATH %>webcomponents/code-gov-web-components.js" defer></script>
<script>
function loadScript(url) {
var script = document.createElement('script');
script.src = url;
script.onload = function() {
console.warn("loaded " + url);
};
document.head.appendChild(script);
}
/* replaced URLSearchParams polyfill with utils/url-parsing */
/* replaced fetch polyfill with fetchJSON and fetchText */
if (window.customElements === undefined) {
console.warn("this browser doesn't support custom elements, so we'll load a polyfill");
loadScript('<%= PUBLIC_PATH %>polyfills/custom-elements.js');
}
try {
/* global CustomEvent */
new CustomEvent('test');
} catch (error) {
console.warn("This browser doesn't support CustomEvent, which is used by code-gov-style, so we'll load a polyfill");
loadScript('<%= PUBLIC_PATH %>polyfills/custom-event.js');
}
function injectScript(innerHTML) {
var script = document.createElement('script');
script.innerHTML = innerHTML;
document.head.appendChild(script);
}
<% if (ENABLE_GOOGLE_ANALYTICS === true) { %>
setTimeout(function() {
//Google Tag Manager
injectScript("(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-5CKH6WC');");
}, 3000);
<% } %>
</script>
</body>
</html>