1 package SL::Layout::Material;
 
   4 use parent qw(SL::Layout::Base);
 
   7 use SL::Layout::MaterialMenu;
 
   8 use SL::Layout::MaterialStyle;
 
   9 use SL::Layout::Content;
 
  11 sub get_stylesheet_for_user {
 
  12   # overwrite kivitendo fallback
 
  17   "templates/mobile_webpages";
 
  20 sub init_sub_layouts {
 
  22     SL::Layout::None->new,
 
  23     SL::Layout::MaterialStyle->new,
 
  24     SL::Layout::MaterialMenu->new,
 
  25     SL::Layout::Content->new,