]> git.decadent.org.uk Git - maypole.git/blobdiff - ex/fancy_example/templates/factory/navbar
moved ex to examples, fix to edit template
[maypole.git] / ex / fancy_example / templates / factory / navbar
diff --git a/ex/fancy_example/templates/factory/navbar b/ex/fancy_example/templates/factory/navbar
deleted file mode 100644 (file)
index 0c8b168..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-[%#
-
-=head1 navbar
-
-This is a navigation bar to go across the page. (Or down the side, or
-whatetver you want to do with it.) It displays all the tables which are
-accessible, with a link to the list page for each one.
-
-#%]
-[% PROCESS macros %]
-<div id="navcontainer">
-<ul id="navlist">
-[%
-    FOR table = config.display_tables;
-        '<li '; 'id="active"' IF table == classmetadata.table; '>';
-        # Hack
-        link(table, "list", "", table);
-        '</li>';
-    END;
-%]
-</ul>
-</div>