2021-12-15 08:24:49 +00:00
|
|
|
/-
|
|
|
|
Copyright (c) 2021 Henrik Böving. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
Authors: Henrik Böving
|
|
|
|
-/
|
|
|
|
import DocGen4.ToHtmlFormat
|
|
|
|
import DocGen4.Output.Template
|
|
|
|
|
|
|
|
namespace DocGen4
|
|
|
|
namespace Output
|
|
|
|
|
|
|
|
open scoped DocGen4.Jsx
|
|
|
|
|
2022-02-12 14:09:13 +00:00
|
|
|
def notFound : HtmlM Html := do templateExtends (baseHtml "404") $ pure $
|
2021-12-15 08:24:49 +00:00
|
|
|
<main>
|
|
|
|
<h1>404 Not Found</h1>
|
|
|
|
<p> Unfortunately, the page you were looking for is no longer here. </p>
|
|
|
|
<div id="howabout"></div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
end Output
|
|
|
|
end DocGen4
|