Layout: Content als eigenes Layout und Split compositor
[kivitendo-erp.git] / SL / Layout / Content.pm
1 package SL::Layout::Content;
2
3 use strict;
4 use parent qw(SL::Layout::Base);
5
6 use SL::Presenter;
7
8 sub start_content {
9   "<div id='content'>";
10 }
11
12 sub end_content {
13   "</div>";
14 }
15
16 1;
17
18 __END__
19
20 =encoding utf-8
21
22 =head1 NAME
23
24 SL::Layout::Content
25
26 =head1 DESCRIPTION
27
28 Pseudo layout for the position of the actual content in the layout. Currently
29 only implements the start_content/end_content blocks used for styling.
30
31 =head1 AUTHOR
32
33 Sven Schöling E<lt>s.schoeling@linet-services.deE<gt>
34
35 =cut