-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
38 lines (37 loc) · 2.03 KB
/
Copy path404.html
File metadata and controls
38 lines (37 loc) · 2.03 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
---
layout: default
title: Page Not Found
permalink: /404.html
description: The page you're looking for couldn't be found.
---
<section class="section text-center" style="padding: 6rem 0;">
<div class="container">
<span class="eyebrow">404</span>
<h1 class="mt-0">Page not found</h1>
<p style="max-width:520px; margin:0 auto 1.5rem;">The page you're looking for doesn't exist, or its URL may have changed case (older HackHPC event links were case-sensitive).</p>
<div class="cta-row" style="justify-content:center;">
<a href="/" class="btn btn-primary">Go to Homepage</a>
<a href="/events/" class="btn btn-outline">Browse Events</a>
</div>
</div>
</section>
<script>
// Preserve legacy case-sensitivity redirects for old event links that predate this redesign.
(function () {
var redirects = {
'https://hackhpc.github.io/hackthethreat23': 'https://hackhpc.github.io/HacktheThreat23',
'https://hackhpc.github.io/hpcinthecity22': 'https://hackhpc.github.io/HPCintheCity22',
'https://hackhpc.github.io/bigdatahack-2022': 'https://hackhpc.github.io/BigDataHack-2022',
'https://hackhpc.github.io/studenthackatsc22': 'https://hackhpc.github.io/StudentHackatSC22',
'https://hackhpc.github.io/facultyhack-gateways22': 'https://hackhpc.github.io/FacultyHack-Gateways22',
'https://hackhpc.github.io/hackattacc-2022': 'https://hackhpc.github.io/HackatTACC-2022',
'https://hackhpc.github.io/admi22': 'https://hackhpc.github.io/ADMI22/',
'https://hackhpc.github.io/certifiedhackathoninternationalprofessional': 'https://hackhpc.github.io/CertifiedHackathonInternationalProfessional/',
'https://hackhpc.github.io/hpcinthecity21': 'https://hackhpc.github.io/HPCintheCity21/',
'https://hackhpc.github.io/pearc21': 'https://hackhpc.github.io/Pearc21/',
'https://hackhpc.github.io/hpcinthecity20': 'https://hackhpc.github.io/HPCintheCity20/'
};
var target = redirects[window.location.href.toLowerCase()];
if (target) { window.location.replace(target); }
})();
</script>