Skip to content

Commit

Permalink
Change title from VenusHacks 2023 to VenusHacks 2024 (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
waalbert authored Feb 15, 2024
1 parent 7209e0d commit efd07f0
Showing 1 changed file with 27 additions and 19 deletions.
46 changes: 27 additions & 19 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,25 @@
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-159147239-1"></script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-159147239-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());

gtag('config', 'UA-159147239-1');
gtag("config", "UA-159147239-1");
</script>

<meta charset="utf-8" />
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="UC Irvine's women-centric hackathon!"
/>
<meta name="description" content="UC Irvine's women-centric hackathon!" />
<link rel="apple-touch-icon" href="logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
Expand All @@ -34,7 +36,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>VenusHacks 2023</title>
<title>VenusHacks 2024</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
Expand All @@ -43,11 +45,11 @@
/>

<script src="https://use.fontawesome.com/733e69044c.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap"
rel="stylesheet"
>
/>

<!-- Start Single Page Apps for GitHub Pages -->
<script type="text/javascript">
Expand All @@ -61,16 +63,22 @@
// When the single page app is loaded further down in this file,
// the correct url will be waiting in the browser's history for
// the single page app to route accordingly.
(function(l) {
if (l.search[1] === '/' ) {
var decoded = l.search.slice(1).split('&').map(function(s) {
return s.replace(/~and~/g, '&')
}).join('?');
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + decoded + l.hash
(function (l) {
if (l.search[1] === "/") {
var decoded = l.search
.slice(1)
.split("&")
.map(function (s) {
return s.replace(/~and~/g, "&");
})
.join("?");
window.history.replaceState(
null,
null,
l.pathname.slice(0, -1) + decoded + l.hash
);
}
}(window.location))
})(window.location);
</script>
<!-- End Single Page Apps for GitHub Pages -->
</head>
Expand Down

0 comments on commit efd07f0

Please sign in to comment.