Viewing File: /home/maglabs/2vsa/wp-content/themes/cargohub/parts/content-service.php

<?php
/**
 * @package CargoHub
 */

$css_class = 'col-xs-12 col-md-4 col-sm-6';
?>
<div id="post-<?php the_ID(); ?>" <?php post_class( $css_class ); ?>>
	<div class="service-inner">
		<div class="service-thumbnail">
			<a href="<?php the_permalink() ?>">
				<?php the_post_thumbnail( 'cargohub-service-thumb' ) ?>
			</a>
		</div>
		<div class="service-summary">
			<h2 class="service-title"><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h2>
			<?php the_excerpt(); ?>
		</div>
	</div>
</div>
Back to Directory File Manager