9 lines
161 B
Perl
9 lines
161 B
Perl
|
|
package LJ::S2Theme::drifting;
|
||
|
|
use base qw( LJ::S2Theme );
|
||
|
|
use strict;
|
||
|
|
|
||
|
|
sub layouts { ( "2l" => "two-columns-left" ) }
|
||
|
|
sub layout_prop { "layout_type" }
|
||
|
|
|
||
|
|
1;
|