summaryrefslogtreecommitdiff
path: root/httemplate/elements/menubar.html
blob: 87a50312c2c2210ce0ce7fffc56e8ccfbc1907cd (plain)
1
2
3
4
5
6
7
8
<%
  my($item, $url, @html);
  while (@_) {
    ($item, $url) = splice(@_,0,2);
    push @html, qq!<A HREF="$url">$item</A>!;
  }
%>
<%= join(' | ', @html) %>