- (finish) includes! (closes: Bug#551)
[freeside.git] / httemplate / elements / menubar.html
diff --git a/httemplate/elements/menubar.html b/httemplate/elements/menubar.html
new file mode 100644 (file)
index 0000000..87a5031
--- /dev/null
@@ -0,0 +1,8 @@
+<%
+  my($item, $url, @html);
+  while (@_) {
+    ($item, $url) = splice(@_,0,2);
+    push @html, qq!<A HREF="$url">$item</A>!;
+  }
+%>
+<%= join(' | ', @html) %>