mourningdove/cgi-bin/LJ/S2Theme/negatives.pm
2026-05-24 01:03:05 +00:00

15 lines
277 B
Perl

package LJ::S2Theme::negatives;
use base qw( LJ::S2Theme );
use strict;
sub layouts {
(
"1" => "one-column",
"1s" => "one-column-split",
"2l" => "two-columns-left",
"2r" => "two-columns-right"
)
}
sub layout_prop { "layout_type" }
1;