Committer: akanashin
LJSUP-10444: New Style - tasty foodA trunk/cgi-bin/LJ/S2Theme/understroke.pm
Added: trunk/cgi-bin/LJ/S2Theme/understroke.pm =================================================================== --- trunk/cgi-bin/LJ/S2Theme/understroke.pm (rev 0) +++ trunk/cgi-bin/LJ/S2Theme/understroke.pm 2012-02-02 13:30:10 UTC (rev 11397) @@ -0,0 +1,17 @@ +package LJ::S2Theme::understroke; +use strict; + +use base qw(LJ::S2Theme); + +sub layouts { ( "2l" => "2CL", "2r" => "2CR" ) } +sub layout_prop { "layout_type" } +sub cats { qw( ) } +sub designer { "LiveJournal" } + +### Themes ### + +package LJ::S2Theme::understroke::tasty_food; +use base qw(LJ::S2Theme::understroke); +sub cats { qw( food ) } + +1;