mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/readline.git
synced 2026-05-26 03:08:28 +08:00
26 lines
No EOL
573 B
PHP
26 lines
No EOL
573 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="content">
|
|
<div class="container-inner-inner">
|
|
|
|
<?php while ( have_posts() ): the_post(); ?>
|
|
|
|
<article <?php post_class('group'); ?>>
|
|
|
|
<div class="entry themeform">
|
|
<?php the_content(); ?>
|
|
<div class="clear"></div>
|
|
</div><!--/.entry-->
|
|
|
|
</article>
|
|
|
|
<?php if ( comments_open() || get_comments_number() ) : comments_template( '/comments.php', true ); endif; ?>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
</div><!--/.container-inner-inner-->
|
|
</div><!--/.content-->
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|