page-timeline.php 666 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. Template Name: 时光轴模版
  4. */
  5. get_header();
  6. #error_reporting(E_ALL);
  7. #ini_set('display_errors', '1');
  8. ?>
  9. <div id="main">
  10. <header class="timeline-header"><h1 class="cat-title">时光轴</h1> <span class="cat-des"><p>TimeLine</p> </span></header>
  11. <div id="main-part">
  12. <?php if (have_posts()) : the_post(); update_post_caches($posts); ?>
  13. <article class="art">
  14. <div class="art-main">
  15. <div class="art-content">
  16. <?php the_content(); memory_archives_list(); ?>
  17. </div>
  18. </div>
  19. </article>
  20. <?php endif; ?>
  21. </div>
  22. </div>
  23. <?php get_footer();