use Template;
my $data = {
user => {
nick => f00li5h,
home => '/home/f00li5h',
bio => '/home/f00li5h/.plan',
},
page_title => 'user profile'
};
my $template = q{
[% page_title || 'lovely' %]
about user [% user.nick %]
likes to spend lots of time in or arround [% user.home %]
you can read more about [% user.nick %] at [% user.bio %]
};
my $TT = Template->new();
$TT->process(\$template , $data );