加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
page.php 557 Bytes
一键复制 编辑 原始数据 按行查看 历史
唐杰 提交于 2019-02-04 02:39 . v2.4
<?php get_header(); ?>
<div id="main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article class="col-md-8 col-md-offset-2 view clearfix">
<h1 class="view-title" style="border-bottom:1px dashed #5bc0eb;padding-bottom:10px;margin-bottom:30px;"><?php the_title(); ?></h1>
<div class="view-content">
<?php the_content(); ?>
</div>
<section id="comments">
<?php comments_template(); ?>
</section>
</article>
<?php endwhile; else: ?>
<?php endif; ?>
</div>
<?php get_footer(); ?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化