/home/arranoyd/eventrify/wp-content/themes/uptime/loop/content-post-masonry-quote.php
<?php $author = get_post_meta( $post->ID, '_tommusrhodus_quote_format_author', 1 ); ?>

<div id="post-<?php the_ID(); ?>" <?php post_class( 'col-md-6 col-lg-4' ); ?> data-isotope-item>
	
	<div class="card card-body justify-content-between bg-primary-2 text-light">
		
		<div class="d-flex justify-content-between mb-3">
			<div class="text-small d-flex">
				<?php get_template_part( 'inc/content-post', 'meta' ); ?>
			</div>
		</div>
		
		<?php 
			the_title( '<h2>', '</h2>' ); 
			echo '<span class="text-small opacity-70">'. esc_html( $author ) .'</span>'; 
		?>

	</div>

</div>