aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/ViewPort/SiteLayout.pm
blob: 227e8accf698f98c3d29366806a2fc9076edc4db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package Reaction::UI::ViewPort::SiteLayout;

use Reaction::Class;
extends 'Reaction::UI::ViewPort';

use namespace::clean -except => [ qw(meta) ];
use MooseX::Types::Moose qw/Str HashRef/;

has 'title' => (isa => Str, is => 'rw', lazy_fail => 1);
has 'static_base_uri' => (isa => Str, is => 'rw', lazy_fail => 1);
has 'meta_info' => (
  is => 'rw',
  isa => HashRef,
  required => 1,
  default => sub { {} }
);

__PACKAGE__->meta->make_immutable;

1;