]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/tips/parentlinks_style.mdwn
fix url
[ikiwiki.git] / doc / tips / parentlinks_style.mdwn
index b992a11a0703bd51ba6de6af6ead04c20b265e15..f9dfa8f55d682b373ab1ff517b0562f70c01d914 100644 (file)
@@ -6,7 +6,7 @@ a subset of a page's parents. It also provides a few bonus
 possibilities, such as styling the parent links depending on their
 place in the path.
 
-[[!toc ]]
+[[!toc levels=2]]
 
 Content
 =======
@@ -82,6 +82,24 @@ following lines in `page.tmpl`:
 
 Then write the appropriate CSS bits for `a.height1`, etc.
 
+Avoid showing title of toplevel index page
+------------------------------------------
+
+If you don't like having "index" appear on the top page of the wiki,
+but you do want to see the name of the page otherwise, you can use a
+special `HAS_PARENTLINKS` template variable that the plugin provides.
+It is true for every page *except* the toplevel index.
+
+Here is an example of using it to hide the title of the toplevel index
+page:
+
+       <TMPL_LOOP NAME="PARENTLINKS">
+       <a href="<TMPL_VAR NAME=URL>"><TMPL_VAR NAME=PAGE></a>/ 
+       </TMPL_LOOP>
+       <TMPL_IF HAS_PARENTLINKS>
+       <TMPL_VAR TITLE>
+       </TMPL_IF>
+
 Full-blown example
 ------------------