56 lines
891 B
HTML
56 lines
891 B
HTML
---
|
|
permalink: /404.html
|
|
layout: none
|
|
title: Page Not Found | Error 404
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
<main>
|
|
|
|
|
|
{% include sidebar.html %}
|
|
|
|
|
|
<!--
|
|
- #main-content
|
|
-->
|
|
|
|
<div class="main-content">
|
|
|
|
<!--
|
|
- #NAVBAR
|
|
-->
|
|
|
|
<article class="active">
|
|
|
|
<header>
|
|
<h2 class="h2 article-title">{{ page.title }}</h2>
|
|
</header>
|
|
|
|
We can't find that... How about going to the homepage? <a href="/">Click here.</a>
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<!--
|
|
- custom js link
|
|
-->
|
|
<script src="/assets/js/script.js"></script>
|
|
|
|
<!--
|
|
- ionicon link
|
|
-->
|
|
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
|
|
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |