<div class="bw-post bw-newsletter">
	<?php
	$subtitle = get_field('wpcf-subtitle', get_the_ID());
	$url = get_field('wpcf-link-url', get_the_ID());
	$link_text = get_field('wpcf-link-text', get_the_ID());
	if (empty($link_text)) $link_text = "Open Newsletter";
	$summary = get_field('summary', get_the_ID());
	$image = get_field('acf-thumbnail', get_the_ID());
	?>
	<div>
		
		
		<h2><?php
		if ($url) echo "<a href=\"$url\" target=\"_blank\">";
		the_title();
		if ($url) echo "</a>";
		?></h2>

		<?php if ($subtitle) : ?>
			<h3><?php echo esc_html($subtitle); ?></h3>
		<?php endif; ?>

		<?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"><?php echo $link_text; ?></a>
		<?php endif; ?>
	</div>
	<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>