ACC SHELL

Path : /srv/www/vhosts/rozzo/wp-content/themes/amplius/team-format/
File Upload :
Current File : //srv/www/vhosts/rozzo/wp-content/themes/amplius/team-format/grid.php

				
<article <?php post_class('clearfix'); ?>>
	<?php 
		$member_position = get_post_meta( $post->ID, 'coffee_member_position', true);	
	?>	
	<div class="entry-inner clearfix">
			<div class="entry-media-wrapper clearfix">
				<div class="entry-media clearfix">
					<?php the_post_thumbnail('thumbnail-280x275'); ?>		
					<div class="entry-media-arrow-bottom"></div>
				</div>
			</div>
		<div class="entry-title-wrapper clearfix">
			<h1 class="entry-title"><?php the_title(); ?></h1>
		</div>
		
		<?php if($member_position): ?>
			<div class="entry-meta-wrapper">
				<div class="entry-meta heading-font">
					<ul>
						<li><?php echo($member_position); ?></li>
					</ul>
				</div>
			</div>
		<?php endif; ?>
		
		<?php if($post->post_excerpt || $post-> post_content) : ?>
			<div class="entry-content-wrapper clearfix">
				<div class="entry-content clearfix">
					<?php if ($post->post_excerpt) : ?>
						<?php the_excerpt(); ?>	
					<?php else : ?>
						<?php the_content(false); ?>
					<?php endif; ?>					
				</div>
			</div>
		<?php endif; ?>
	</div>
	
</article>

ACC SHELL 2018