<?php snippet('header') ?>

<?php
    $tag = urldecode(param('by'));
    $filter_entries = $site->page("entries")->children()->filterBy('tags', $tag, ',');
?>

<h1><?= $tag ?></h1>

<?php foreach($filter_entries as $entry): ?>
    <a href="<?= $entry->url() ?>"><?= $entry->title() ?></a>
<?php endforeach ?>

<?php snippet('footer') ?>