mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/colordive.git
synced 2026-07-15 11:27:48 +08:00
28 lines
No EOL
520 B
PHP
28 lines
No EOL
520 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="blog-wrapper">
|
|
|
|
<?php while ( have_posts() ): the_post(); ?>
|
|
|
|
<article <?php post_class(); ?>>
|
|
|
|
<h1 class="blog-single-title"><?php the_title(); ?></h1>
|
|
|
|
<div class="entry themeform">
|
|
<?php the_content(); ?>
|
|
<div class="clear"></div>
|
|
</div><!--/.entry-->
|
|
|
|
<div class="entry-footer group">
|
|
<div class="entry-comments themeform">
|
|
<?php comments_template(); ?>
|
|
</div>
|
|
</div>
|
|
|
|
</article>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|