]> iEval git - plack-app-gruntmaster.git/blame_incremental - lib/Gruntmaster/Page/Learn.pm
Use Redis and reindent code
[plack-app-gruntmaster.git] / lib / Gruntmaster / Page / Learn.pm
... / ...
CommitLineData
1package Gruntmaster::Page::Learn;
2
3use 5.014000;
4use strict;
5use warnings;
6use parent qw/Exporter/;
7our @EXPORT_OK = qw/generate/;
8our $VERSION = '0.001';
9
10use constant TITLE => 'Learn';
11
12use HTML::Template::Compiled;
13use Gruntmaster::Page::Common qw/header footer/;
14
15my %templates = (
16 en => <<'HTML',
17Install interactive-perl-tutorial from your nearest CPAN mirror. Run <code>cpan App::InteractivePerlTutorial</code>.
18<p>You can also get the source from <a href="http://git.ieval.ro/?p=app-interactiveperltutorial.git">git.ieval.ro</a>
19HTML
20);
21
22$templates{$_} = header($_, TITLE) . $templates{$_} for keys %templates;
23$templates{$_} .= footer $_ for keys %templates;
24
25sub generate{
26 HTML::Template::Compiled->new(scalarref => \$templates{$_[1]})->output;
27}
28
291
This page took 0.02259 seconds and 4 git commands to generate.