archive.php 408 B

1234567891011121314
  1. <?php get_header(); ?>
  2. <div class="content-wrap">
  3. <div class="content">
  4. <header class="archive-header">
  5. <h1><?php
  6. if(is_day()) echo the_time('Y年m月j日');
  7. elseif(is_month()) echo the_time('Y年m月');
  8. elseif(is_year()) echo the_time('Y年');
  9. ?>的内容</h1>
  10. </header>
  11. <?php include( 'modules/excerpt.php' ); ?>
  12. </div>
  13. </div>
  14. <?php get_sidebar(); get_footer(); ?>