I cannot seem to find an answer for this anywhere! I am trying to make a custom theme based on the bootstrapped theme, and I cannot find anywhere how to simply list the categories!
I've tried basing it off the modern theme with topmenu.phtml which has this line:
$this->getHtml('level-top')
But I cannot find level-top anywhere?
How can I just list the categories with their sub-categories in my theme?
<ul class="navigation">
<li><a href="#"><img src="images/icons/mainnav/form-elements.png" alt="">Category<strong>2</strong></a>
<ul>
<li><a href="http://127.0.0.1/">Sub-Category</a></li>
<li><a href="http://127.0.0.1/">Sub-Category</a></li>
</ul>
</li>
</ul>
On a side note, why is the magento theme system designed in the way it is? It's vile! What is with including CSS and JS and pages via an XML file? Magento is slow as hell already why on earth use XML?