timelines/single.php
Alexander Agnarson 193a2259c2 Initial commit
2024-03-20 14:45:02 +01:00

39 lines
No EOL
972 B
PHP

<?php get_header(); ?>
<div class="main-content">
<?php while ( have_posts() ): the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('entry-wrap'); ?>>
<div class="entry themeform">
<?php the_content(); ?>
<?php wp_link_pages(array('before'=>'<div class="post-pages">'.esc_html__('Pages:','timelines'),'after'=>'</div>')); ?>
<div class="clear"></div>
</div>
</article>
<div class="entry-footer group">
<?php the_tags('<p class="post-tags"><span>'.esc_html__('Tags:','timelines').'</span> ','','</p>'); ?>
<div class="clear"></div>
<?php do_action( 'alx_ext_sharrre_footer' ); ?>
<?php if ( get_theme_mod( 'post-nav', 'sidebar' ) == 'content' ) { get_template_part('inc/post-nav'); } ?>
<div class="themeform">
<?php comments_template(); ?>
</div>
</div><!--/.entry-footer-->
<?php endwhile; ?>
</div><!--/.main-content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>