2017-10-07 11:43:26 +09:00
|
|
|
---
|
|
|
|
title: Page Not Found
|
2021-01-21 21:45:05 +09:00
|
|
|
permalink: "/404"
|
2017-10-07 11:43:26 +09:00
|
|
|
---
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2021-01-21 21:45:05 +09:00
|
|
|
<%- partial('head.html') %>
|
2017-10-07 11:43:26 +09:00
|
|
|
<style>
|
|
|
|
h1 {
|
|
|
|
font-size: 12em;
|
|
|
|
font-weight: 100;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<body>
|
2021-01-21 21:45:05 +09:00
|
|
|
<%- partial('header.html') %>
|
|
|
|
<section class="page-section error-page">
|
|
|
|
<div class="container-narrow text-center py-md-8">
|
2017-10-07 11:43:26 +09:00
|
|
|
<h1>404</h1>
|
|
|
|
<p class="lead">This page could not be found</p>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</body>
|
|
|
|
</html>
|