Bailador / Bailador

A light-weight route-based web application framework for Perl 6
MIT License
179 stars 47 forks source link

Improve the error page design #274

Open Emeric54 opened 7 years ago

Emeric54 commented 7 years ago

That would be nice to improve the error page design. You can find the source of this page in ressources/error.template.

If you want to play with this page in the context, you can use a simple application :

use Bailador;

app.config.mode = 'development';
get '/' => sub {
    die 'argh !';
}
baile;