<?php
// Quote link
$link = get_post_meta( get_the_ID(), 'spawp_quote_format_link', true );

// Add post classes
$classes = spawp_post_entry_classes(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class( $classes ); ?>>
	<div class="post-quote-wrap">
		<?php if ( 'post' == $link ) { ?>
			<a href="<?php the_permalink(); ?>" class="thumbnail-link">
		<?php } ?>
			<div class="post-quote-content">
				<?php echo wp_kses_post( get_post_meta( get_the_ID(), 'spawp_quote_format', true ) ); ?>
				<span class="post-quote-icon icon-speech"></span>
			</div>
			<div class="post-quote-author"><?php the_title(); ?></div>
		<?php if ( 'post' == $link ) { ?>
			</a>
		<?php } ?>
	</div>
</article>