[% j %]
[% IF more.$i_c.$j_c %]
[% more.$i_c.$j_c %]
[% END %]
[% j_c = j_c + 1 %]
[% END %]
[% i_c = i_c + 1 %]
[% END %]
EOT
,
'h' => <<'EOT'
[% FOREACH i IN list %]
[% i %]
[% END %]
EOT
,
'v' => <<'EOT'
[% FOREACH i IN list %]
[% i %]
[% END %]
EOT
};
=head2 _template_modified
TODO
=cut
sub _template_modified {
my($self,$path) = @_;
return 1;
}
=head2 _template_content
TODO
=cut
sub _template_content {
my ($self, $path) = @_;
$path = basename($path);;
$self->debug("get $path") if $self->{DEBUG};
my $data = $templates->{$path};
my $error = "error: $path not found";
my $mod_date = 1;
return $data;
}
=head1 AUTHOR
Nuno Carvalho, C<< >>
=head1 BUGS
Please report any bugs or feature requests to C, or through
the web interface at L. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc HTML::Auto
You can also look for information at:
=over 4
=item * RT: CPAN's request tracker
L
=item * AnnoCPAN: Annotated CPAN documentation
L
=item * CPAN Ratings
L
=item * Search CPAN
L
=back
=head1 ACKNOWLEDGEMENTS
=head1 LICENSE AND COPYRIGHT
Copyright 2012 Project Natura.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
=cut
1; # End of HTML::Auto