<div class="bw-post bw-media-clipping">
	<?php
	$url = get_field('wpcf-url', get_the_ID());
	$summary = get_field('wpcf-summary', get_the_ID());
	$image = get_field('acf-image', get_the_ID());
	$publisher = get_field('wpcf-publisher', get_the_ID());
	?>
	<div>
		<?php
		if ($image) {
			if ($url) echo "<a href=\"$url\" target=\"_blank\">";
			echo wp_get_attachment_image($image, 'medium');
			if ($url) echo "</a>";
		}
		?>
	</div>
	<div>
		<div class="bw-date"><?php echo get_the_date('F j, Y'); ?></div>
		<?php if ($publisher) : ?>
			<h3><?php echo esc_html($publisher); ?></h3>
		<?php endif; ?>

		<?php if ($url) echo "<a href=\"$url\" target=\"_blank\">"; ?>
		<h2><?php the_title(); ?></h2>
		<?php if ($url) echo "</a>"; ?>


		<?php if ($summary) : ?>
			<div class="bw-summary"><?php echo $summary ?></div>
		<?php endif; ?>

		<?php if ($url) : ?>
			<a href="<?php echo $url ?>" target="_blank" rel="noopener noreferrer" class="bw-download">Read the Article</a>
		<?php endif; ?>
	</div>
</div>