Sha256: e8190694f3588f9eed950627caedc9f72b7b7c8d6649489d8ec97681d6643d98
Contents?: true
Size: 945 Bytes
Versions: 17
Compression:
Stored size: 945 Bytes
Contents
<?php get_header(); ?> <div class="content-wrap"> <div class="content content-area"> <?php if ( have_posts() ) : ?> <header class="page-header"> <h1 class="page-title"> <?php if ( is_day() ) : printf( __( 'Day: %s', '<%= project_id %>' ), get_the_date() ); elseif ( is_month() ) : printf( __( 'Month: %s', '<%= project_id %>' ), get_the_date( 'F Y' ) ); elseif ( is_year() ) : printf( __( 'Year: %s', '<%= project_id %>' ), get_the_date( 'Y' ) ); else : _e( 'Archives', '<%= project_id %>' ); endif; ?> </h1> </header> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> <?php <%= project_id %>_paging_nav(); ?> <?php else : ?> <?php get_template_part( 'content', 'none' ); ?> <?php endif; ?> </div> </div> <?php get_footer(); ?>
Version data entries
17 entries across 17 versions & 1 rubygems