Skip to content
Snippets Groups Projects

fix: :bug: Overlapping footer in LS Hostel templates, unify with LS

Merged Ghost User requested to merge dBucik/fix_lsaai_css into main
14 files
+ 329
840
Compare changes
  • Side-by-side
  • Inline
Files
14
@@ -274,4 +274,23 @@ class LshostelTemplateHelper
@@ -274,4 +274,23 @@ class LshostelTemplateHelper
}
}
return $html;
return $html;
}
}
 
 
public static function getClipboard($data, $baseurlpath)
 
{
 
$html = '';
 
if (isset($data['clipboard.js'])) {
 
$html = '<script type="text/javascript" src="/' . $baseurlpath . 'resources/clipboard.min.js"></script>';
 
}
 
return $html;
 
}
 
 
public static function getRtl($rtl, $baseurlpath)
 
{
 
$html = '';
 
if ($rtl) {
 
$html = '<link rel="stylesheet/css" type="text/css" href="/' .
 
$baseurlpath . 'resources/default-rtl.css"/>';
 
}
 
return $html;
 
}
}
}
Loading