The theme is at .3 Alpha now. Added were:
- Archives page using the Monthly Archives plugin and the Tag Cloud plugin
- Added Tag and Tag Cloud to stylesheet
- Updated theme.php to call all created pages in the top navigation
Make sure to use the archives page you install the Monthly Archives and Tag Cloud plugins then create a page in the Habari admin called "Archives" (without quotes).
1207492628
I noticed what I think is a small bug in theme.php.
This line:
$this->assign('nav_pages', Posts::get( array( 'content_type' => 'page', 'nolimit' => 1 ) ) );
should be this:
$this->assign('nav_pages', Posts::get( array( 'content_type' => 'page', 'status' => 'published', 'nolimit' => 1 ) ) );
to prevent deleted pages from appearing.
Nice theme, appreciate your work on it!
1207494157
Thanks! i'll update that today