<% """ Main menu. expects: hlight - name of page to be high-lighted """ %> <% # This is a list of tuple representing the menu contents. # Each tuple is: # name - the name of the menu item/page # text - the text to be shown in the menu # url - the URL menu_items = [("home", "Home", "home"), ("product", "Products", "product"), ("about", "About", "about")] for name, text, url in menu_items: attr = "" if name == hlight: attr = "class='highlight'" # begin %> <% # end %>
><%=text%>