File: /virtual/nagasaki/public_html/wp-content/themes/byblos/content-posts.php
<?php
/*
* Posts Template
* @author bilal hassan <info@smartcatdesign.net>
*
*/
?>
<div class="item-post">
<a href="<?php the_permalink(); ?>">
<?php if(has_post_thumbnail() ) : the_post_thumbnail('large'); ?>
<?php else : ?>
<img src="<?php echo get_template_directory_uri(); ?>/images/post_image.jpg" class="wp-post-image" />
<?php endif; ?>
<h2 class="post-title"><?php the_title(); ?></h2>
</a>
</div>
<br />
<script>
jQuery(document).ready(function($){
$('.site-content-wrapper .item-home').masonry({
itemSelector: '.item-post',
gutter: 0,
transitionDuration : 0,
}).masonry('reloadItems').masonry();
});
</script>