You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
729 B
28 lines
729 B
<?php
|
|
/*
|
|
* Template Name: Page 页面模板
|
|
*/
|
|
?>
|
|
<?php get_header(); ?>
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
<header class="entry-header">
|
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
|
</header>
|
|
<div class="entry-content">
|
|
<?php the_content(); ?>
|
|
<?php wp_link_pages(); ?>
|
|
</div>
|
|
</article>
|
|
<?php comments_template(); ?>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<?php get_sidebar(); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|