File: /var/www/html/wp-content/themes/mobile/page.php
<?php get_header(); ?>
	  <?php if (have_posts()) : ?>
      <?php while (have_posts()) : the_post(); ?>
        
      
      
      
        <div class="page-header">
          <h1><?php the_title(); ?></h1>
          <p><?php the_author() ?>发表于<?php the_time(__('Y/m/d H:i:s')) ?>  <?php if(function_exists('the_views')) { the_views(); } ?> <?php the_tags(); ?> </p>
          <p><span><?php the_category(',') ?></span>   <span><a href="<?php the_permalink(); ?>#pll-comment-here" target=_blank><?php comments_number('0个评论', '1个评论', '%个评论'); ?></a></p>
        </div>
        
        <p class="lead"><?php echo get_the_content(); ?></p>
    
      
      
      
      <?php endwhile; ?>
      <?php else : ?>
	  <p>哦,你找的文章好像不在哦。</p>
	  <?php endif; ?>
      
<div style="clear:both;"></div>
 
   
<?php get_footer(); ?>