[%# USAGE
tpage --define news_id=all wrapper-macro.tt
tpage wrapper-macro.tt
-%]
[%- BLOCK link -%]
[% content | html %]
[%- END -%]
[%
SET vink = ( 1 < 2 ) ? 'link' : 'knil';
PROCESS $vink action = 'readnews' newsitem='some' content='Read Some';
%]
[% WRAPPER link
action = "readnews"
newsitem = news_id
%] Read More ... [% END %]
####
$ tpage wrapper-macro.tt
Read Some
Read More ...
$ tpage --define news_id=all wrapper-macro.tt
Read Some
Read More ...