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