textdash/page.php
2021-08-14 18:53:24 +02:00

32 lines
No EOL
801 B
PHP

<?php get_header(); ?>
<div class="content">
<div class="content-inner group">
<?php while ( have_posts() ): the_post(); ?>
<article <?php post_class(); ?>>
<div class="post-wrapper group">
<header class="entry-header group">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<div class="entry-content">
<div class="entry themeform">
<?php the_content(); ?>
<div class="clear"></div>
</div><!--/.entry-->
</div>
<div class="entry-footer group">
<?php if ( comments_open() || get_comments_number() ) : comments_template( '/comments.php', true ); endif; ?>
</div>
</div>
</article><!--/.post-->
<?php endwhile; ?>
</div>
</div><!--/.content-->
<div id="move-sidebar-content"></div>
<?php get_footer(); ?>