<%args>
$name => 'Guest'
$items => []
</%args>

<html>
<head>
    <title>Welcome to Mason</title>
</head>
<body>
    <h1>Hello, <% $name %>!</h1>

% if (@$items) {
    <h2>Your Shopping Cart:</h2>
    <ul>
%   foreach my $item (@$items) {
        <li><% $item->{name} %> - $<% sprintf("%.2f", $item->{price}) %></li>
%   }
    </ul>
%   my $total = 0;
%   $total += $_->{price} for @$items;
    <p><strong>Total: $<% sprintf("%.2f", $total) %></strong></p>
% } else {
    <p>Your cart is empty.</p>
% }

    <& .footer &>
</body>
</html>

<%def .footer>
<hr>
<p style="text-align: center; color: gray;">
    Powered by Mason | &copy; 2024
</p>
</%def>
