summaryrefslogtreecommitdiff
path: root/rt/share/html/m/_elements/wrapper
blob: 1891079bd148ccb684b22c360dac4349a7f52cd6 (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 ($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>