summaryrefslogtreecommitdiff
path: root/rt/share/html/m/_elements/wrapper
blob: 794385db46ff72ce6f3a1376d0441d6dae29ce93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<%args>
$title => ''
$show_home_button => 1
</%args>
<%init>
if ($m->request_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>