mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-06-15 18:05:50 +00:00
24 lines
373 B
Perl
24 lines
373 B
Perl
use Mojolicious::Lite;
|
|
|
|
# /
|
|
get '/' => 'index';
|
|
|
|
# /*
|
|
get '/:groovy' => sub {
|
|
my $self = shift;
|
|
$self->render_text($self->param('groovy'), layout => 'funky');
|
|
};
|
|
|
|
app->start('psgi');
|
|
__DATA__
|
|
|
|
@@ index.html.ep
|
|
% layout 'funky';
|
|
Yea baby!
|
|
|
|
@@ layouts/funky.html.ep
|
|
<!doctype html><html>
|
|
<head><title>Funky!</title></head>
|
|
<body><%= content %></body>
|
|
</html>
|