%= stylesheet '/css/prettify-mojo.css' %= javascript '/js/prettify.js' %= stylesheet begin body { background-color: #f5f6f8; color: #445555; font: 0.9em 'Helvetica Neue', Helvetica, sans-serif; font-weight: normal; line-height: 1.5; margin: 0; } code { background-color: #eef9ff; border: solid #cce4ff 1px; -moz-border-radius: 5px; border-radius: 5px; color: #333; font: 0.8em Consolas, Menlo, Monaco, Courier, monospace; padding: 0.4em; } h1 { color: #2a2a2a; font-size: 1.5em; margin: 0; } pre { font: 0.8em Consolas, Menlo, Monaco, Courier, monospace; margin: 0; white-space: pre-wrap; } table { border-collapse: collapse; color: #333; margin-top: 1em; margin-bottom: 1em; width: 100%; } td { border-top: solid #cce4ff 1px; padding: 0.5em; } th { padding: 0.5em; text-align: left; } tr:nth-child(even) td { background-color: #ddeeff } tr:nth-child(odd) td { background-color: #eef9ff } #footer { padding-top: 1em; text-align: center; } #routes { background-color: #fff; -moz-border-radius-bottomleft: 5px; border-bottom-left-radius: 5px; -moz-border-radius-bottomright: 5px; border-bottom-right-radius: 5px; -moz-box-shadow: 0px 0px 2px #ccc; -webkit-box-shadow: 0px 0px 2px #ccc; box-shadow: 0px 0px 2px #ccc; margin-left: 5em; margin-right: 5em; padding: 1em; padding-top: 70px; } #wrapperlicious { max-width: 1000px; margin: 0 auto; } % end %= include inline => $Mojolicious::Controller::MOJOBAR

Page not found... yet!

None of these routes matched your <%= $self->req->method %> request for <%= $self->req->url->path %>, maybe you need to add a new one?

% my $walk; % $walk = begin % my ($node, $depth) = @_; % my $pattern = $node->pattern->pattern || '/'; % $pattern = "+$pattern" if $depth;
<%= '  ' x $depth %><%= $pattern %>
<%= uc(join ',', @{$node->via || []}) || '*' %>
% my $name = $node->name;
<%= $node->has_custom_name ? qq{"$name"} : $name %>
% $depth++; %= $walk->($_, $depth) for @{$node->children}; % $depth--; % end %= $walk->($_, 0) for @{app->routes->children};
Pattern Methods Name