- or download this
[ Perl programs to create output data ]
V
[ Languages library in DB or textfiles ]
V
[ Template Toolkit templates to display output ]
- or download this
#!/usr/bin/perl
# Includes
...
$tt->process("${lang}/homepage.tmpl", $data)
|| die $tt->error(), "\n";
- or download this
# in en/homepage.tmpl
Welcome $first_name $last_name
...
Bienvenido $first_name $last_name
# ...
- or download this
# in single_template.tmpl
# Do not do this!
...
$second_paragraph.
...