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 ); #### user profile about user f00li5h
likes to spend lots of time in or arround /home/f00li5h you can read more about f00li5h at /home/f00li5h/.plan