<div class="bw-post">
	<?php $link = wp_get_attachment_url(intval(get_field('acf-pdf', get_the_ID()))); ?>
	<div class="bw-date">Posted <?php echo get_the_date('F j, Y'); ?></div>
	<?php if ($link) echo "<a href=\"$link\" target=\"_blank\" rel=\"noopener noreferrer\">"; ?>
	<h3 class="bw-title"><?php the_title(); ?></h3>
	<?php if ($link) echo "</a>"; ?>
	<?php if (!empty($summary = get_field('wpcf-summary', get_the_ID()))) : ?>
		<div class="bw-summary"><?php echo $summary; ?></div>
	<?php endif ?>
	<a href="<?php echo $link; ?>" target="_blank" rel="noopener noreferrer" class="bw-download-link">Download</a>
</div>