Ah! Thank you both!
I found the right doc but playing around with the code I haven’t managed to do anything yet but create a blank screen. Does any of the code below make sense? As always, immensely appreciate any and all help you can provide!!
<!– Post Preview–>
<div class=”post-preview-content-box”>
<header class=”post-header”>
<h2>” rel=”bookmark”><?php the_title(); ?></h2>
<span class=”date”><i class=”fa fa-book”><span><?php echo get_the_date(‘F j, Y’) ?></span></i></span>
<span class=”author”><i class=”fa fa-user”><span><?php the_author(); ?></span></i></span>
<span class=”comments”>
<i class=”fa fa-comment”><span>
<?php comments_popup_link(__( ‘No comment’, ‘jd_framework’ ),__( ‘One comment’, ‘jd_framework’ ), __( ‘% comments’, ‘jd_framework’ ) ); ?>
</span></i>
</span><!– .comments-link –>
</header>
<?php if ((function_exists(‘has_post_thumbnail’)) && (has_post_thumbnail())) : ?>
<div class=”image”>
“><?php the_post_thumbnail(); ?>
</div><!–slider_image–>
<?php endif; ?>
<!– Post Preview Content –>
<?php the_excerpt() ?>
</div>
</article>
<div class=”clear”></div>
<?php endwhile; ?>
</div><!– / Posts –>