X-Git-Url: http://wagnertech.de/git?p=kivitendo-erp.git;a=blobdiff_plain;f=SL%2FLayout%2FContent.pm;fp=SL%2FLayout%2FContent.pm;h=8e0549bfee7bd26900da845a34b6d83a177ad4c6;hp=0000000000000000000000000000000000000000;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44 diff --git a/SL/Layout/Content.pm b/SL/Layout/Content.pm new file mode 100644 index 000000000..8e0549bfe --- /dev/null +++ b/SL/Layout/Content.pm @@ -0,0 +1,33 @@ +package SL::Layout::Content; + +use strict; +use parent qw(SL::Layout::Base); + +sub start_content { + "
"; +} + +sub end_content { + "
"; +} + +1; + +__END__ + +=encoding utf-8 + +=head1 NAME + +SL::Layout::Content + +=head1 DESCRIPTION + +Pseudo layout for the position of the actual content in the layout. Currently +only implements the start_content/end_content blocks used for styling. + +=head1 AUTHOR + +Sven Schöling Es.schoeling@linet-services.deE + +=cut