aboutsummaryrefslogtreecommitdiff
path: root/doc/plugins
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-12-30 17:16:52 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-12-30 17:16:52 +0000
commit579a15060cd6311a9e2dbcc4a89972d331e46408 (patch)
tree83878d3fc74a590525d7e23437face44ff40db4d /doc/plugins
parent611cdabe19953c4ca423f7ccbe2a30791fd58722 (diff)
downloadikiwiki-579a15060cd6311a9e2dbcc4a89972d331e46408.tar
ikiwiki-579a15060cd6311a9e2dbcc4a89972d331e46408.tar.gz
web commit by TobiOetiker
Diffstat (limited to 'doc/plugins')
-rw-r--r--doc/plugins/contrib/navbar.mdwn33
1 files changed, 33 insertions, 0 deletions
diff --git a/doc/plugins/contrib/navbar.mdwn b/doc/plugins/contrib/navbar.mdwn
new file mode 100644
index 000000000..a95ede76a
--- /dev/null
+++ b/doc/plugins/contrib/navbar.mdwn
@@ -0,0 +1,33 @@
+The Navbar Plugin renders a Navigation Bar into your page. It is based on code
+from the sidebar plugin see http://ikiwiki.kitenet.net/plugins/sidebar.html
+for details.
+
+The plugin looks for a page called "navbar"
+
+This page must contain a itemized list of the form
+
+
+ * \[[Welcome|index]]
+ * \[[Management|mgmt]]
+ * \[[Leadership|mgmt/lead]]
+ * \[[Kidnapping|mgmt/kidnapping]]
+ * \[[Information_Technology|it]]
+ * \[[Windows|it/windows]]
+ * \[[Mobile_Communication|it/mobile]]
+
+This list will be turned into a folding menu structure
+
+Include this into your templates.
+
+ <TMPL_IF NAVBAR>
+ <div id="navbar">
+ <TMPL_VAR NAVBAR>
+ </div>
+ </TMPL_IF>
+
+
+To make a nice menu, some css magic is required, but since this is required to make
+ikiwiki look good anyway, I won't go into details here ...
+
+Tobi Oetiker 2006.12.30
+