Help for this page

Select Code to Download


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