Include tags in frontend

You can use the split()method:

<?php
$tags = $page->tags()->split(',');
foreach($tags as $tag): ?>
  <?= $tag ?>
<?php endforeach ?>

Or if you want to build a link for filtering, see this thread:

Single blog entry: How to display its tags?