/- 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.Output.ToHtmlFormat import DocGen4.Output.Template namespace DocGen4 namespace Output open scoped DocGen4.Jsx /-- Render the 404 page. -/ def notFound : BaseHtmlM Html := do templateExtends (baseHtml "404") <| pure <|

404 Not Found

Unfortunately, the page you were looking for is no longer here.

end Output end DocGen4