Hi, I am quite new to EE (started yesterday) and love it. Of course I am finishing my first site and now encounter my first real problem.
My goal is to build a list of Articles ordered by Categories, the code I would expect is this :
<div class="concept">
<h4>concept</h4>
<ol>
<li><a href="#">concept article title</a></li>
<li><a href="#">concept article title 2</a></li>
</ol>
</div>
<div class="design">
<h4>design</h4>
<ol>
<li><a href="#">design article title</a></li>
</ol>
</div>
<div class="code">
<h4>code</h4>
<ol>
<li><a href="#">code article title</a></li>
</ol>
</div>
I don’t see a way to do this with the weblog:category_archive since I need it to loop on the extra chunk that is the container div.
Any suggestion ?
