23 lines
528 B
HTML
23 lines
528 B
HTML
---
|
|
layout: compress
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="{{ page.lang | default: site.lang | default: " en " }}">
|
|
|
|
{% include header.html %}
|
|
<body>
|
|
<main aria-label="Content">
|
|
{% include navbar.html %}
|
|
<div class="wrapper not-found">
|
|
<div class="container">
|
|
<div class="title">404</div>
|
|
<p class="phrase">😕 Hmm... Seems you lost from my journey.</p>
|
|
<a class="solution" href="{{ site.url }}">back home</a>
|
|
</div>
|
|
</div>
|
|
{% include footer.html %}
|
|
</main>
|
|
</body>
|
|
|
|
</html> |