<%init>
$r->content_type('text/html; charset=utf-8');

if ($m->base_comp->path =~ m|/_elements/|) {
    # Requesting an internal component by hand -- naughty
    $m->redirect("/errors/requested_private_component");
}
$m->comp('/_elements/nav');
$m->call_next();
return;
</%init>
