So, I’m using the blog module by calguy1000 and it’s working great in its default state. However, I’m trying to list old articles grouped by their respective month they were posted in. The archive action/template only lists the months and a number of posts in bracktes, like:
Code: Select all
June 2011 – (2)
May 2011 – (8)
April 2011 – (13)
I can’t seem to figure out how to make it like:
Code: Select all
June 2011
06/22 – Article title
06/15 – Article title
May 2011
05/12 – Article title
05/08 – Article title
05/03 – Article title
April 2011
04/12 – Article title
04/08 – Article title
04/03 – Article title
…
Also, is there any documentation on which smarty variables are available for use? Or are the variables like {$one.summary_url}, {$one.count}, etc. on the default templates the only ones?
I’d greatly appreciate any help and ideas.