shallow copying req->params
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / SiteLayout.pm
CommitLineData
8a293e2e 1package Reaction::UI::ViewPort::SiteLayout;
2
3use Reaction::Class;
4use aliased 'Reaction::UI::ViewPort';
5
81393881 6use namespace::clean -except => [ qw(meta) ];
7extends ViewPort;
8a293e2e 8
8a293e2e 9
05885573 10
11has 'title' => (isa => 'Str', is => 'rw', lazy_fail => 1);
81393881 12
062c926a 13has 'static_base_uri' => (isa => 'Str', is => 'rw', lazy_fail => 1);
14
81393881 15has 'meta_info' => (
16 is => 'rw', isa => 'HashRef',
17 required => '1', default => sub { {} }
18);
19
20__PACKAGE__->meta->make_immutable;
414f3276 21
8a293e2e 22
231;