magaziner/single.php
Alexander Agnarson b0607606ae Initial commit
2020-03-11 14:44:42 +01:00

67 lines
No EOL
2.5 KiB
PHP

<?php get_header(); ?>
<div id="page">
<div class="container">
<div class="main">
<div class="main-inner group">
<div class="content">
<div class="content-inner">
<div class="pad group">
<?php while ( have_posts() ): the_post(); ?>
<article <?php post_class(); ?>>
<?php if( get_post_format() ) { get_template_part('inc/post-formats'); } ?>
<?php do_action( 'alx_ext_sharrre' ); ?>
<h1 class="post-title"><?php the_title(); ?></h1>
<p class="post-byline"><?php echo get_avatar(get_the_author_meta('user_email'),'64'); ?><?php esc_html_e('by','magaziner'); ?> <?php the_author_posts_link(); ?> <i class="far fa-clock"></i> <?php the_time( get_option('date_format') ); ?> &middot; <i class="fas fa-folder"></i> <?php the_category(' / '); ?></p>
<div class="clear"></div>
<div class="entry themeform">
<div class="entry-inner">
<?php the_content(); ?>
<?php wp_link_pages(array('before'=>'<div class="post-pages">'.esc_html__('Pages:','magaziner'),'after'=>'</div>')); ?>
</div>
<div class="clear"></div>
<?php the_tags('<p class="post-tags"><span>'.esc_html__('Tags:','magaziner').'</span> ','','</p>'); ?>
<?php do_action( 'alx_ext_sharrre_footer' ); ?>
</div><!--/.entry-->
</article><!--/.post-->
<?php endwhile; ?>
<div class="clear"></div>
<?php if ( ( get_theme_mod( 'author-bio', 'on' ) == 'on' ) && get_the_author_meta( 'description' ) ): ?>
<div class="author-bio">
<div class="bio-avatar"><?php echo get_avatar(get_the_author_meta('user_email'),'128'); ?></div>
<p class="bio-name"><?php the_author_posts_link(); ?></p>
<p class="bio-desc"><?php the_author_meta('description'); ?></p>
<div class="clear"></div>
</div>
<?php endif; ?>
<?php if ( get_theme_mod( 'post-nav', 's1' ) == 'content' ) { get_template_part('inc/post-nav'); } ?>
<?php if ( get_theme_mod( 'related-posts', 'categories' ) != 'disable' ) { get_template_part('inc/related-posts'); } ?>
<?php if ( get_theme_mod( 'post-comments', 'on' ) == 'on' ) { comments_template('/comments.php',true); } ?>
</div><!--/.pad-->
</div>
</div><!--/.content-->
<?php get_sidebar(); ?>
</div><!--/.main-inner-->
</div><!--/.main-->
</div><!--/.container-->
</div><!--/#page-->
<?php get_footer(); ?>