12345678910111213141516171819202122232425262728 |
- <?php
- /*
- template name: 空页面
- description: template for yusi123.com Yusi theme
- */
- get_header();
- ?>
- <div class="pagewrapper clearfix">
-
-
- <header class="pageheader clearfix">
- <h1 class="pull-left">
- <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
- </h1>
- <div class="pull-right"><!-- 百度分享 -->
- <?php deel_share() ?>
- </div>
- </header>
- <?php while (have_posts()) : the_post(); ?>
- <div class="article-content">
- <?php the_content(); ?>
- </div>
- <?php comments_template('', true); endwhile; ?>
-
- </div>
- <?php get_footer(); ?>
|