NAME
Statocles::Theme - Templates, headers, footers, and navigation
VERSION
version 0.013
SYNOPSIS
# Template directory layout
/theme/site/layout.html.ep
/theme/blog/index.html.ep
/theme/blog/post.html.ep
my $theme = Statocles::Theme->new( path => '/theme' );
my $layout = $theme->template( site => 'layout.html' );
my $blog_index = $theme->template( blog => 'index.html' );
my $blog_post = $theme->template( blog => 'post.html' );
DESCRIPTION
A Theme contains all the templates that applications need. This class handles finding and parsing files into template objects.
When the "source_dir" is read, the templates inside are organized based on their name and their parent directory.
ATTRIBUTES
source_dir
The source directory for this theme.
If the source_dir begins with ::, will pull one of the Statocles default themes from the Statocles share directory.
templates
The template objects for this theme.
METHODS
BUILDARGS
Handle the source_dir :: share theme.
read()
Read the source_dir and create the template objects inside.
template( $section => $name )
Get the template from the given section with the given name.
AUTHOR
Doug Bell <preaction@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Doug Bell.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.