<h2><?php echo $this->headline; ?></h2>
<p><?php echo $this->message; ?></p>

<div class="row no-gutters bg-white mb-3 p-3 border rounded">
<?php foreach( $this->info as $type => $data ): ?>
<div class="col p-3 info_container <?php echo $type . ' ' . $data['class']; ?>">
  <h3><?php echo $data['headline']; ?></h3>
  <div class="info"><?php echo $data['info']; ?></div>
  <?php if ($data['edit']): ?><a href="<?php echo $data['edit']; ?>" class="mt-3 btn btn-secondary edit"><?php echo $this->edit_info; ?></a><?php endif; ?>
</div>
<?php endforeach; ?>
</div>
