> I can't understand why the following does not work:
> 
> [% 
>        mod_menu =
>        {
>           title=> "Title",
>           html=> "Html text"
>        }
>  
>        right_modules = [
>           $mod_menu
>        ]

"$" is not necessary in this case (or most cases, for that matter).
Simply write:

       right_modules = [
          mod_menu
       ]

and you should get the behavior you want.

_______________________________________________
templates mailing list
[EMAIL PROTECTED]
http://lists.template-toolkit.org/mailman/listinfo/templates

Reply via email to