X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/3ab26ffcd0c8bfbf08508624c9ea07fbc6b4352a..4a12c839937370488b8b8a40bef376e7cb0a2ce6:/SL/Controller/Layout/Top.pm diff --git a/SL/Controller/Layout/Top.pm b/SL/Controller/Layout/Top.pm new file mode 100644 index 000000000..f4305d6e0 --- /dev/null +++ b/SL/Controller/Layout/Top.pm @@ -0,0 +1,19 @@ +package SL::Controller::Layout::Top; + +use strict; +use parent qw(SL::Controller::Layout::Base); + +sub render { + my ($self) = @_; + + $self->SUPER::render('menu/header', { partial => 1, no_output => 1 }, + now => DateTime->now_local, + is_fastcgi => scalar($::dispatcher->interface_type =~ /fastcgi/i), + is_links => scalar($ENV{HTTP_USER_AGENT} =~ /links/i)); +} + +sub stylesheets { +# 'frame_header/header.css'; +} + +1;