This commit is contained in:
2026-08-22 23:59:41 -06:00
parent 84893662ca
commit a89b275313
23 changed files with 374 additions and 39 deletions

View File

@@ -0,0 +1,20 @@
package CW::Template::Error::404;
use Moo;
extends 'CW::Template';
sub render {
return [
h2 => { style => "margin: 0" } =>
[q[You are searching for something that seemingly doesn't exist.]],
div => [
p => { style => "margin: 0" } =>
["Perhaps this is the sign you needed to create it yourself?"],
img =>
{ class => 'alexandria', src => "/static/images/alexandria.jpg" }
]
];
}
1;