The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
: cascade base

: around title -> {
<: $tag.name :> | <: $blog.title :>
: }

: around content -> {
<h1>Tag: <: $tag.name :></h1>
<ul class="archives">
: for $tag.entries() -> $entry {
<li><time><: $entry.published_at.strftime('%Y-%m-%d') :></time><a href="<: $entry.site_path() | uri_for :>"><: $entry.title :></a></li>
: }
</ul>
: }