-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
25 lines (25 loc) · 1.05 KB
/
single.php
File metadata and controls
25 lines (25 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**
* The template for displaying all single posts
*/
get_header();
?>
<div class="container single-template-3">
<div class="row">
<div class="col-sm-12">
<?php if( have_posts() ) : while( have_posts() ) : the_post(); ?>
<article <?php post_class();?>>
<header class="entry-header"><h1 class="entry-title"><?php the_title();?></h1></header>
<div class="entry-summary"><?php _e( do_shortcode( '[orbit_excerpt]' ) );?></div>
<div class='post-meta'><?php echo do_shortcode("[hoa_author_posts_link]"); ?> | <?php the_time( 'M j, Y' );?></div>
<div class="post-thumbnail"><?php _e( do_shortcode( '[orbit_thumbnail size="full"]' ) );?></div>
<div class="entry-content"><?php the_content(); ?></div>
<?php get_template_part( 'partials/post/post-author-box');?>
<?php get_template_part( 'partials/comments-box');?>
<?php get_template_part( 'partials/post-navigation');?>
</article>
<?php endwhile; endif; ?>
</div>
</div>
</div>
<?php get_footer();?>