You are on page 1of 1

<?

php
/**
* @package WP Macchiato
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="image-container-responsive">
<a href="<?php the_permalink('') ?>" title="<?php the_title(); ?>"><?php
the_post_thumbnail('wp-macchiato-medium-thumb'); ?></a>
</div>
<div class="details-container">
<h1 class="title"><a href="<?php the_permalink('') ?>" title="<?php the_titl
e(); ?>"><?php the_title(); ?></a></h1>
<div class="entry-meta">
<div class="featured-category">
<ul class="meta-info">
<li><i class="fa fa-user"></i><?php the_author_posts_link();
?></li>
<li><i class="fa fa-clock-o"></i><?php the_time( get_option(
'date_format' ) ); ?></li>
<li><i class="fa fa-comments"></i><a href="<?php comments_li
nk(); ?>" class="meta-comment"><?php comments_number( '0 comment', '1 comment',
'% comments' ); ?></a></li>
</ul>
</div>
</div>
</div>
<div class="post_excerpt">
<?php the_excerpt(); ?>
</div>
<div id="read-more">
<a href="<?php the_permalink('') ?>" ><?php _e( 'Read More', 'wp-macchia
to' ); ?></a>
</div>
</article><!-- #post-## -->

You might also like