> I employ a rather simple (in my mind) 2 level tab-based navigation bar 
> on many of my websites (example: www.ambitiouslemon.com note: not IE 
> compatible).  I was hoping Radiant could code this in a snippet that I 
> could call from my layout.  

One solution to this problem is to create a page which children are the 
pages which correspond to the tabs. For example, you can create a page 
called "tabs" as a child of the main page and then create as children to 
this page the pages About, Comunity, etc. From your layout or the header 
snippet you can take all children of "tabs" using this code:

<r:find url="tabs">
<ul>
  <r:children:each>
    <li><r:link /></li>
  </r:children:each>
</ul>
</r:find>

Hope it helps.

-- 
Posted via http://www.ruby-forum.com/.
_______________________________________________
Radiant mailing list
[email protected]
http://lists.radiantcms.org/mailman/listinfo/radiant

Reply via email to