I need to implement a navigation menu on a web page, possibly with several levels of tabs. I've used the CSS way whenever the CSS is under my control, but now I'm facing problems when using an exising CSS library (Twitter's Bootstrap in this case).
First, this is the CSS way I've used. Example HTML:
<html>
<head>
<title>Example page</title>
</head>
<body class="articles">
<div class="navigation">
<ul>
<li class="frontpage"><a href="#">Frontpage</a></li>
<li class="articles"><a href="#">Articles</a></li>
</ul>
</div>
<p>Blah blah.</p>
</body>
</html>
... and the CSS:
body.frontpage div.navigation li.frontpage,
body.articles div.navigation li.articles {
background-color:red;
color:white;
}
Simple enough. Only the body's class needed to be changed when appriopriate.
Now, Bootstrap seems to use the class based style to select navigation items (topbar, tabs, pills). Example:
...
<div class="navigation">
<ul class="tabs">
<li class="active"><a href="#">Frontpage</a></li>
<li><a href="#">Articles</a></li>
</ul>
</div>
...
I initially thought of doing something like
navigation = ('frontpage',)
# or
navigation = ('articles', 'categories', 'foo',)
in the controller and then passing this tuple to the templates, but somehow it has this vibe of "doing it wrong".
So the question is: Since I actually have to print the class selection in the templates, how do I keep track of the current location (as in, where in the navigation tree is this page), given that the page may have multiple levels of tabs or other navigation items? Is there a preferred way to do this?
I'm using Pyramid in route style with Mako templates, but generic answers appreciated too.