Template Toolkit

ハッシュ

 [% pagename = 'next' %]
 [% page.$pagename %]       # same as [% page.next %]

http://search.cpan.org/~abw/Template-Toolkit-2.19/lib/Template/Manual/Variables.pod#Hash_Array_References

ループ

 [% FOREACH i IN items %]
    [% i %]
 [% END %]

http://search.cpan.org/perldoc?Template::Manual::Directives

フィルター

改行コードをBRタグへ

 <p>[% bar | html_line_break %]</p>

参考

http://search.cpan.org/perldoc?Template::Filters

コメント

 [% # this is a comment to the end of line
    foo = 'bar'
 %]
 
 [%# placing the '#' immediately inside the directive
     tag comments out the entire directive
 %]

http://search.cpan.org/perldoc?Template

インクルード・インサート

TTファイルをインクルード

 [% INCLUDE header.tt %]

HTMLファイルをインクルード

 [% INSERT "$DOC_ROOT/footer.html" %]

参考

http://search.cpan.org/perldoc?Template::Manual::Directives


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS