New Bryar feature
Another tiny new Bryar feature - the CGI front-end has sprouted an extra method 'is_mobile' which you can call to figger out whether the user is on a mobile device or not. It's available in your templates like this:
[% PERL %]
$stash->set(
is_mobile =>
$stash->get('bryar')->config()->frontend()->is_mobile()
);
[% END %]
and then use is_mobile like any other TT variable.