1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<%args> $title => '' $show_home_button => 1 </%args> <%init> if ($DECODED_ARGS->{'NotMobile'}) { $session{'NotMobile'} = 1; RT::Interface::Web::Redirect(RT->Config->Get('WebURL')); $m->abort(); } $m->comp('header', title => $title, show_home_button => $show_home_button); $m->out($m->content); $m->comp('footer'); $m->abort(); </%init>