File: D:/HostingSpaces/SBogers68/ouddorp-duin.nl/app/storage/views/89b6b5c549ff40fda462360c4282f08d
<div class="grid-row <?php if($page->code_name != 'home'): ?>cta-block-default <?php else: ?> cta-block <?php endif; ?>">
<div class="grid-col col-12">
<?php /*If sentence and buttons values are specified in the code*/ ?>
<?php if(isset($sentence, $button, $layout, $buttonLink)): ?>
<?php if($layout == 'home'): ?>
<?php /* custom cta block for homepage */ ?>
<div class="cta-content-wrapper cta-home">
<h2 class="cta-sentence"><?php echo $sentence; ?></h2>
<a href="<?php echo $buttonLink; ?>" class="cta-button"><?php echo $button; ?></a>
</div>
<?php elseif($layout == 'default'): ?>
<?php /* default block for cta */ ?>
<div class="cta-content-wrapper cta-default">
<h2 class="cta-sentence"><?php echo $sentence; ?></h2>
<a href="<?php echo $buttonLink; ?>" class="cta-button" <?php if(isset($blank) && $blank): ?> target="_blank" <?php endif; ?>><?php echo $button; ?></a>
</div>
<?php endif; ?>
<?php /*The sentence and buttons are specified in KMS (dynamic content)*/ ?>
<?php else: ?>
<div class="cta-content-wrapper cta-default">
<h2 class="cta-sentence"><?php echo $block->sentence; ?></h2>
<?php if(isset($block->buttonLink) && $block->buttonLink != ''): ?>
<a href="<?php echo $block->buttonLink; ?>" target="_blank" class="cta-button"><?php echo $block->button; ?></a>
<?php else: ?>
<p>Fill in a link in kms</p>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
</div>