[%# menubar: create 2 cell edgebox with content on left and menu on right
# ARGS:
# edge # edge colour
# fill # fill colour
# border # border (edge) width
# content # menu bar content (e.g. title text)
# menu # structure for menu items, as per html/menu
-%]
[% DEFAULT content = ' ' -%]
[% WRAPPER html/edgebar -%]
<td>
[% content %]
</td>
<td align="right">
[% INCLUDE html/menu -%]
</td>
[%- END %]