diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-09-11 17:53:45 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-09-11 17:53:45 +0000 |
commit | d81f159c633d558fc12c4df0126e8df8e7163fe3 (patch) | |
tree | 77c96b09c4ae3e4ad7efa3fa9c413b1b0c1d92d4 /includes/theme.inc | |
parent | b9633dcdede3dcc3e9466382dbed6b1fb7603bee (diff) | |
download | brdo-d81f159c633d558fc12c4df0126e8df8e7163fe3.tar.gz brdo-d81f159c633d558fc12c4df0126e8df8e7163fe3.tar.bz2 |
- Committed Nick's path improvements; you can now control the look and feel
of the breadcrumb navigation.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index ec442b13c..7e6f60212 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -41,6 +41,10 @@ class BaseTheme { return "misc/$name"; } + function path($path) { + print "<div class=\"path\">". implode($path, " » ") ."</div>"; + } + function node($node, $main) { if (module_exist("taxonomy")) { $terms = taxonomy_link("taxonomy terms", $node); |