Skip to content

Instantly share code, notes, and snippets.

@brianmed
Last active December 14, 2015 18:29
Show Gist options
  • Save brianmed/5129979 to your computer and use it in GitHub Desktop.
Save brianmed/5129979 to your computer and use it in GitHub Desktop.
#!/opt/perl
use Mojolicious::Lite;
get '/' => sub {
my $self = shift;
$self->render("slash");
};
get '/:name' => sub {
my $self = shift;
my $name = $self->param("name");
$self->render(template => "slash", name => $name);
};
app->start;
__DATA__
@@ slash.html.ep
Hello, world<%= stash('name') ? ": " . stash('name') : '' %>.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment