Typecho模板中的404.php
普通页面,随意弄即可。
举例:
<?php $this->need('header.php'); ?>
<div class="container" id="content">
<div class="row">
<div class="span6 offset3">
<div class="row apost">
<h2 class="entry_title">404 - <?php _e('页面没找到'); ?></h2>
</div>
<div class="row">
<?php $this->need('sidebar.php'); ?>
</div>
</div>
</div>
</div><!-- end #content-->
<?php $this->need('footer.php'); ?>