File: //var/www/mussarq_bak2/wp-content/themes/catch-vogue/template-parts/portfolio/content-portfolio.php
<?php
/**
* The template used for displaying projects on index view
*
* @package Catch Vogue
*/
?>
<?php
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> class="hentry">
<div class="hentry-inner">
<div class="portfolio-thumbnail post-thumbnail">
<a class="post-thumbnail" href="<?php the_permalink(); ?>">
<?php
// Output the featured image.
if ( has_post_thumbnail() ) {
$thumbnail = '';
the_post_thumbnail( $thumbnail );
} else {
echo '<a href=' . esc_url( get_permalink() ) .'><img src="' . trailingslashit( esc_url( get_template_directory_uri() ) ) . 'assets/images/no-thumb-596x447.jpg"/></a>';
}
?>
</a>
</div><!-- .portfolio-thumbnail -->
<div class="entry-container">
<div class="inner-wrap">
<header class="entry-header">
<?php the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); ?>
</header>
</div><!-- .inner-wrap -->
</div><!-- .entry-container -->
</div><!-- .hentry-inner -->
</article>