TripletaiL Japanese Web Application Framework
埋め込まれたタグに文字列を出力し、表示してみましょう。
#!/usr/local/bin/perl
use strict;
use warnings;
use Tripletail qw(/dev/null);
$TL->startCgi(
-main => \&main,
);
sub main
{
my $t = $TL->newTemplate('template.html');
$t->expand(
STR => '文字列',
NUM => 3000,
);
$t->flush;
}
<!DOCTYPE html>
<HTML>
<BODY>
<&STR> : <&NUM>
</BODY>
</HTML>