Skip to content

Instantly share code, notes, and snippets.

@yko
Created August 15, 2010 16:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yko/525667 to your computer and use it in GitHub Desktop.
Save yko/525667 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use Mojolicious::Lite;
get '/' => 'index';
app->start;
__DATA__
@@ index.html.ep
<div style='border: 5px solid red;'>
%== include "xxx";
</div>
Yea baby!
@@ xxx.html.ep
Tis should be wrapper into red border!
<div style='border: 5px solid green;'>
%== include "yyy";
</div>
@@ yyy.html.ep
Tis should be wrapper into green border!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment