00001 <?php if ( !defined( 'HABARI_PATH' ) ) { die( 'No direct access' ); } ?> 00002 <ul id="monthly_archives"> 00003 <?php $months = $content->months; foreach( $months as $month ): ?> 00004 <li> 00005 <a href="<?php echo $month[ 'url' ]; ?>" title="View entries in <?php 00006 echo $month[ 'display_month' ] . ", " . $month[ 'year' ]; 00007 ?>"><?php 00008 echo $month[ 'display_month' ] . " " . $month[ 'year' ] . $month[ 'count' ]; 00009 ?></a> 00010 </li> 00011 <?php endforeach; ?> 00012 </ul>