none_page.php 607 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /*
  3. template name: 空页面
  4. description: template for yusi123.com Yusi theme
  5. */
  6. get_header();
  7. ?>
  8. <div class="pagewrapper clearfix">
  9. <header class="pageheader clearfix">
  10. <h1 class="pull-left">
  11. <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
  12. </h1>
  13. <div class="pull-right"><!-- 百度分享 -->
  14. <?php deel_share() ?>
  15. </div>
  16. </header>
  17. <?php while (have_posts()) : the_post(); ?>
  18. <div class="article-content">
  19. <?php the_content(); ?>
  20. </div>
  21. <?php comments_template('', true); endwhile; ?>
  22. </div>
  23. <?php get_footer(); ?>