summaryrefslogtreecommitdiff
path: root/examples/mojoapp.pl
blob: 221fca23ec50833fb6c7c0734880a89f7c347746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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>