Skip to content

Instantly share code, notes, and snippets.

@marcusramberg
Created September 7, 2018 08:35
Show Gist options
  • Save marcusramberg/756e1856c6d62bd4cab5d31fceb08995 to your computer and use it in GitHub Desktop.
Save marcusramberg/756e1856c6d62bd4cab5d31fceb08995 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use Mojolicious::Lite;
# Documentation browser under "/perldoc"
plugin 'PODRenderer';
get '/' => sub {
my $c = shift;
$c->stash(listData => 1);
$c->render(template => 'index');
};
app->start;
__DATA__
@@ index.html.ep
% layout 'default';
% title 'Welcome';
<h1>Welcome to the Mojolicious real-time web framework!</h1>
To learn more, you can browse through the documentation
<%= link_to 'here' => '/perldoc' %>.
@@ layouts/default.html.ep
<!DOCTYPE html>
<html>
<head><title><%= title %></title></head>
<body><%= content %> - <%= $listData %></body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment