I have a specific question about MODx and how to make a list that groups by publishedon Year and subgroups by publishedon Month. Something like this:

<ul>
 <li>2011
  <ul>
   <li>May
    <ul>
     <li><h2>News heading</h2><p>News content</p></li>
     <li><h2>News heading</h2><p>News content</p></li>
    </ul>
   </li>
   <li>April
    <ul>
     <li><h2>News heading</h2><p>News content</p></li>
     <li><h2>News heading</h2><p>News content</p></li>
    </ul>
   </li>
  </ul>
 <li>2010
  <ul>
   <li>May
    <ul>
     <li><h2>News heading</h2><p>News content</p></li>
     <li><h2>News heading</h2><p>News content</p></li>
    </ul>
   </li>
   <li>April
    <ul>
     <li><h2>News heading</h2><p>News content</p></li>
     <li><h2>News heading</h2><p>News content</p></li>
    </ul>
   </li>
  </ul>
</ul>

I looked at Archivist, but it doesn't seem to give me a lot of options.

Is it possible to use getResources or do I have to write my own snippet?

Thanks.

link|improve this question
feedback

1 Answer

This should be possible using getResources, as you should be able to nest getResources calls.

So basically you get your years in your outer getResources call and within the template for that call you include another getResources call.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.