Template Toolkit LibraryHTML Library |
[ Tutorial ][ Manual ][ Modules ][ Library ][ Tools ][ FAQ ][ Release ] [ Splash! Library ]-> |
DESCRIPTION |
[ Index ][ Library ][ Top ] |
NOTE: This documentation is incomplete and may be incorrect in places. The 'html' template library is distributed as part of the Template Toolkit. It can be found in the 'templates' sub-directory of the installation directory. use Template; my $tt2 = Template->new({ INCLUDE_PATH => '/usr/local/tt2/templates', });
For a portable way to determine the installation 'templates' directory,
you can use the use Template; my $tt2 = Template->new({ INCLUDE_PATH => Template::Config->instdir('templates'), }); You should now be able to access the html library as, for example: [% INCLUDE html/header %] Note that some of the more basic elements don't give you much more than the raw HTML tags. In many cases you might be well advised to stick to regular HTML rather than complicating matters by the use of template elements. e.g. <table> . . . </table> vs [% WRAPPER html/table %] . . . [% END %] However, the use of template elements to generate the underlying HTML does have some important benefits, particularly as the constructs start to get more complicated and more magical. See the example in the 'examples' sub-directory of the distribution directory for further examples and enlightenment on using this library. Headers, Footers and Pages
Tables, Bars and Boxes
|
AUTHOR |
[ Index ][ Library ][ Top ] |
Andy Wardley <abw@andywardley.com> |
VERSION |
[ Index ][ Library ][ Top ] |
2.70, distributed as part of the Template Toolkit version 2.14, released on 04 October 2004. |
COPYRIGHT |
[ Index ][ Library ][ Top ] |
Copyright (C) 1996-2004 Andy Wardley. All Rights Reserved. Copyright (C) 1998-2002 Canon Research Centre Europe Ltd. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. |
SEE ALSO |
[ Index ][ Library ][ Top ] |