Nested Page Components
These components are actually first-class run modes.
Header
sub show_header {
my $self = shift;
$self->template->fill;
}
Navbar
sub show_navbar {
my $self = shift;
$self->template->fill;
}
Footer
sub show_footer {
my $self = shift;
$self->template->fill;
}