2018-12-06 17:54:16 +00:00
|
|
|
@use templates::errors::base;
|
|
|
|
@use template_utils::*;
|
|
|
|
|
|
|
|
@(ctx: BaseContext)
|
|
|
|
|
2019-02-02 14:23:50 +00:00
|
|
|
@:base(ctx, i18n!(ctx.1, "Page not found"), {
|
2018-12-06 17:54:16 +00:00
|
|
|
<h1>@i18n!(ctx.1, "We couldn't find this page.")</h1>
|
|
|
|
<p>@i18n!(ctx.1, "The link that led you here may be broken.")</p>
|
|
|
|
})
|
|
|
|
|