The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
? extends 'base'

<? block title => sub { ?>My amazing blog<? } ?>

? block content => sub {
? for my $entry (@$blog_entries) {
    <h2><?= $entry->title ?></h2>
    <p><?= $entry->body ?></p>
? } # endfor
? } # endblock