blob: ec6c13fea380863c6f78a1eaa59fc6a419619c34 (
plain)
1
2
3
4
5
6
7
8
9
10
|
%
% my($item, $url, @html);
% while (@_) {
% ($item, $url) = splice(@_,0,2);
% next if $item =~ /^\s*Main\s+Menu\s*$/i;
% push @html, qq!<A HREF="$url">$item</A>!;
% }
%
<% join(' | ', @html) %>
|