ACC SHELL

Path : /srv/www/vhosts/rozzo/wp-content/themes/amplius/post-format/medium/
File Upload :
Current File : //srv/www/vhosts/rozzo/wp-content/themes/amplius/post-format/medium/audio.php

<article <?php post_class('clearfix'); ?>>
	<?php 
		$embed = get_post_meta($post->ID, 'coffee_shared_audio', true);
	?>

	<div class="entry-aside clearfix">
			<div class="entry-media-wrapper clearfix">
				<div class="entry-media clearfix">
					<div class="shared-audio clearfix">
						<?php echo stripslashes(htmlspecialchars_decode($embed)); ?>		
					</div>
					<div class="entry-media-arrow-right"></div>
				</div>
			</div>
	</div>
	<div class="entry-inner clearfix">
		<div class="entry-title-wrapper clearfix">
			<h1 class="entry-title">
				<?php if (!is_single()) : ?>
					<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to "%s"', 'coffee' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
				<?php else : ?>
					<?php the_title(); ?>
				<?php endif; ?>
			</h1>
		</div>
		<div class="entry-meta-wrapper">
			<div class="entry-meta heading-font">
				<ul>
					<li><?php the_time(get_option( 'date_format' )); ?></li>
					<li><?php comments_popup_link( __('No Comments', 'coffee'), __('One Comment', 'coffee'), __('% Comment', 'coffee') ); ?></li>
					<li><?php the_category(', '); ?></li>
				</ul>
			</div>
		</div>
		<?php if($post->post_excerpt || $post-> post_content) : ?>
			<div class="entry-content-wrapper clearfix">
				<div class="entry-content clearfix">
					<?php if ($post->post_excerpt && !is_single()) : ?>
						<?php the_excerpt(); ?>	
					<?php else : ?>		
						<?php the_content(false); ?>
					<?php endif; ?>
					<?php if (!is_single()) : ?>
						<a class="read-more" href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to "%s"', 'coffee' ), the_title_attribute( 'echo=0' ) ) ); ?>">
							<button>
								<i class="icon-plus"></i><?php _e('Read More', 'coffee'); ?>
							</button>
						</a>
					<?php elseif(is_single() && has_tag()) : ?>
						<div class="entry-tags clearfix">
							<?php the_tags('', '', ''); ?>
						</div>
					<?php endif; ?>
					
				</div>
			</div>
		<?php endif; ?>
	</div>
	
</article>

ACC SHELL 2018