/[Frey]/trunk/lib/Frey/Skeleton.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/lib/Frey/Skeleton.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 573 - (show annotations)
Thu Nov 27 22:30:51 2008 UTC (15 years, 5 months ago) by dpavlin
File size: 224 byte(s)
added template skeleton module
1 package Frey::Skeleton;
2 use Moose;
3
4 extends 'Frey';
5 with 'Frey::Web';
6 #with 'Frey::Storage';
7
8 has skeleton => (
9 is => 'rw',
10 isa => 'Str',
11 required => 1,
12 default => 'skeleton',
13 );
14
15 sub as_markup {
16 my ($self) = @_;
17 }
18
19 1;

  ViewVC Help
Powered by ViewVC 1.1.26