Skip to content

Commit

Permalink
Fix 404 page to be actual HTML (duh)
Browse files Browse the repository at this point in the history
  • Loading branch information
krwenholz committed May 20, 2024
1 parent c845fd0 commit f3352b3
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions templates/404.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
+++
title = "Page not found"
template = "index.html"
+++
<!DOCTYPE html>
<head>
{% set title = "Page not found" %}
{% set description = "The page you requested couldn't be found." %}
{% include "_includes/head.html" %}
</head>
<body>
<div class="container">
{% include "_includes/heading.html" %}

¯\_(ツ)\_/¯ Sorry! The page you want doesn't seem to exist.
<div class="row">
<div class="col">
<p>¯\_(ツ)\_/¯ Sorry! The page you want doesn't seem to exist.</p>
</div>
</div>
</div>
</body>
</html>

0 comments on commit f3352b3

Please sign in to comment.