The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
<%text>
<%class>
has 'title' => (default => 'My site');
</%class>

<%augment wrap>
  <html>
    <head>
      <link rel="stylesheet" href="/static/css/style.css">
% $.Defer {{
      <title><% $.title %></title>
% }}
    </head>
    <body>
      <% inner() %>
    </body>
  </html>
</%augment>
</%text>