Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[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 sub start_content {
7   "<div id='content'>";
8 }
9
10 sub end_content {
11   "</div>";
12 }
13
14 1;
15
16 __END__
17
18 =encoding utf-8
19
20 =head1 NAME
21
22 SL::Layout::Content
23
24 =head1 DESCRIPTION
25
26 Pseudo layout for the position of the actual content in the layout. Currently
27 only implements the start_content/end_content blocks used for styling.
28
29 =head1 AUTHOR
30
31 Sven Schöling E<lt>s.schoeling@linet-services.deE<gt>
32
33 =cut