NAME
Statocles::Page::Plain - A plain page (with templates)
SYNOPSIS
my $page = Statocles::Page::Plain->new(
path => '/path/to/page.html',
content => '...',
);
my $js = Statocles::Page::Plain->new(
path => '/js/app.js',
content => '...',
);
DESCRIPTION
This Statocles::Page contains any content you want to put in it, while still allowing for templates and layout. This is useful when you generate HTML (or anything else) outside of Statocles.
ATTRIBUTES
content
The content of the page, already rendered to HTML.
METHODS
content
my $html = $page->content;
Get the content for this page.