-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
36 lines (33 loc) · 1.06 KB
/
404.html
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
---
title: 404
permalink: 404.html
org_name: Cornell Giving Day Fundraisers
---
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
{% include header.html %}
<div class="container-lg">
<div class="row">
<div class="col">
<h2 class="site-maintitle my-3 text-center text-lg-start"><span class="organizers-highlight">Page Not Found</span></h2>
<p>Sorry, we couldn't find what you were looking for.</p>
<p>Here are some Cornell Giving Day fundraisers you might consider donating to:</p>
{% for post in site.posts %}
<article>
<h2>
<a href="{{ post.url | relative_url }}">
{{ post.title }}
</a>
</h2>
</article>
{% endfor %}
</div>
</div>
</div>
{% include footer.html %}
<!-- Optional JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
</body>
</html>