* @copyright Copyright (c) 2013, Danny Ramirez
* @link(Alku, http://demo.dronix.me/alku/)
* @license http://www.wtfpl.net/ WTFPL
*/
?>
' . single_cat_title( '', false ) . '' );
elseif ( is_tag() ) :
printf( __( 'Browsing: %s', 'alku' ), '' . single_tag_title( '', false ) . '' );
elseif ( is_search() ) :
printf( __( 'Searching for: %s', 'alku' ), '' . esc_attr( get_search_query() ) . '' );
elseif ( is_day() ) :
printf( __( 'Daily Archives: %s', 'alku' ), '' . get_the_date() . '' );
elseif ( is_month() ) :
printf( __( 'Monthly Archives: %s', 'alku' ), '' . get_the_date( _x( 'F Y', 'monthly archives date format', 'alku' ) ) . '' );
elseif ( is_year() ) :
printf( __( 'Yearly Archives: %s', 'alku' ), '' . get_the_date( _x( 'Y', 'yearly archives date format', 'alku' ) ) . '' );
else :
_e( 'Browsing the Archives', 'alku' );
endif;
?>