18 lines
400 B
Perl
18 lines
400 B
Perl
package LJ::S2Theme::compartmentalize;
|
|
use base qw( LJ::S2Theme );
|
|
use strict;
|
|
|
|
sub layouts {
|
|
(
|
|
"1" => "one-column",
|
|
"1s" => "one-column-split",
|
|
"2l" => "two-columns-left",
|
|
"2r" => "two-columns-right",
|
|
"3" => "three-columns-sides",
|
|
"3r" => "three-columns-right",
|
|
"3l" => "three-columns-left"
|
|
)
|
|
}
|
|
sub layout_prop { "layout_type" }
|
|
|
|
1;
|