tab 转 space

This commit is contained in:
fen 2013-12-09 00:08:28 +08:00
parent 59121c8426
commit fc292e1c0a
2 changed files with 16 additions and 16 deletions

View File

@ -2,12 +2,12 @@
<div class="col-mb-12 col-8" id="main" role="main">
<article class="post">
<h1 class="post-title"><a href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h1>
<h1 class="post-title"><a href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h1>
<div class="post-content">
<?php $this->content(); ?>
<?php $this->content(); ?>
</div>
</article>
<?php $this->need('comments.php'); ?>
</article>
<?php $this->need('comments.php'); ?>
</div><!-- end #main-->
<?php $this->need('sidebar.php'); ?>

View File

@ -2,19 +2,19 @@
<div class="col-mb-12 col-8" id="main" role="main">
<article class="post">
<h1 class="post-title"><a href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h1>
<ul class="post-meta">
<li><?php _e('作者:'); ?><?php $this->author(); ?></li>
<li><?php _e('时间:'); ?><?php $this->date('F j, Y'); ?></li>
<li><?php _e('分类:'); ?><?php $this->category(','); ?></li>
</ul>
<div class="post-content">
<?php $this->content(); ?>
</div>
<p class="tags"><?php _e('标签:'); ?><?php $this->tags(', ', true, 'none'); ?></p>
</article>
<h1 class="post-title"><a href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h1>
<ul class="post-meta">
<li><?php _e('作者:'); ?><?php $this->author(); ?></li>
<li><?php _e('时间:'); ?><?php $this->date('F j, Y'); ?></li>
<li><?php _e('分类:'); ?><?php $this->category(','); ?></li>
</ul>
<div class="post-content">
<?php $this->content(); ?>
</div>
<p class="tags"><?php _e('标签:'); ?><?php $this->tags(', ', true, 'none'); ?></p>
</article>
<?php $this->need('comments.php'); ?>
<?php $this->need('comments.php'); ?>
</div><!-- end #main-->
<?php $this->need('sidebar.php'); ?>