<?php /** * @package Joomla.Site * @subpackage Templates */ defined('_JEXEC') or die; /** @var JDocumentHtml $this */ $app = JFactory::getApplication(); $user = JFactory::getUser(); ?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> <head> <style type="text/css"> @import url('https://fonts.googleapis.com/css2?family=<?php echo $this->params->get('stylefonts'); ?>:wght@<?php echo $this->params->get('fontweight'); ?>&display=swap'); @import url('https://fonts.googleapis.com/css2?family=<?php echo $this->params->get('stylefontsh'); ?>:wght@<?php echo $this->params->get('fontweighth'); ?>&display=swap'); body {font-family: '<?php echo $this->params->get('stylefonts'); ?>', Helvetica,Arial,sans-serif,cursive ; font-size:<?php echo $this->params->get('fontssize'); ?>px ; color:<?php echo $this->params->get('fontscolor'); ?>;background:<?php echo $this->params->get('bodybgcolor'); ?> url(<?php echo $this->baseurl ?>/<?php echo $this->params->get('bodybg'); ?>) <?php echo $this->params->get('bodybgrepeat'); ?> left top <?php echo $this->params->get('bodybgfixed'); ?> ;display:none;font-weight:<?php echo $this->params->get('fontweight'); ?>!important ;<?php echo $this->params->get('bodybgimg'); ?>} .container{ width:100%; max-width:<?php echo $this->params->get('widthcenter'); ?>} a:link, a:visited, a:active{ color: <?php echo $this->params->get('linkcolor'); ?>;text-decoration: none;} a:hover {color: <?php echo $this->params->get('hovercolor'); ?>;text-decoration: none;} h1{font-size:<?php echo $this->params->get('h1size'); ?>em ; color:<?php echo $this->params->get('h1color'); ?> ;font-family: '<?php echo $this->params->get('stylefontsh'); ?>',sans-serif ;} h2{font-size:<?php echo $this->params->get('h2size'); ?>em ; color:<?php echo $this->params->get('h2color'); ?> ;font-family: '<?php echo $this->params->get('stylefontsh'); ?>',sans-serif ;} h3{font-size:<?php echo $this->params->get('h3size'); ?>em ; color:<?php echo $this->params->get('h3color'); ?> ;font-family: '<?php echo $this->params->get('stylefontsh'); ?>',sans-serif ;} h4{font-size:<?php echo $this->params->get('h4size'); ?>em ; color:<?php echo $this->params->get('h4color'); ?> ;font-family: '<?php echo $this->params->get('stylefontsh'); ?>',sans-serif ;} h5{font-size:<?php echo $this->params->get('h5size'); ?>em ; color:<?php echo $this->params->get('h5color'); ?> ;font-family: '<?php echo $this->params->get('stylefontsh'); ?>',sans-serif ;} <?php echo $this->params->get('htagcss'); ?> #image{ padding:<?php echo $this->params->get('imagepadding'); ?>;} <?php echo $this->params->get('imagecss'); ?> #intro{ padding:<?php echo $this->params->get('intropadding'); ?>;} #link{ padding:<?php echo $this->params->get('linkpadding'); ?>;} #link1{ color:<?php echo $this->params->get('link1color'); ?> ;} #link1 a:link, #link1 a:visited, #link1 a:active{ color: <?php echo $this->params->get('link1colorlink'); ?>;text-decoration: none; background:<?php echo $this->params->get('link1bg'); ?>; padding:<?php echo $this->params->get('link1padding'); ?> ; border:<?php echo $this->params->get('link1border'); ?>px solid <?php echo $this->params->get('link1bordercolor'); ?>; border-radius:<?php echo $this->params->get('link1radius'); ?>px;} #link1 a:hover {color: <?php echo $this->params->get('link1hovercolor'); ?>;text-decoration: none;background:<?php echo $this->params->get('link1hoverbg'); ?>; } #link2{ color:<?php echo $this->params->get('link2color'); ?> ;} #link2 a:link, #link2 a:visited, #link2 a:active{ color: <?php echo $this->params->get('link2colorlink'); ?>;text-decoration: none; background:<?php echo $this->params->get('link2bg'); ?>; padding:<?php echo $this->params->get('link2padding'); ?> ; border:<?php echo $this->params->get('link2border'); ?>px solid <?php echo $this->params->get('link2bordercolor'); ?>; border-radius:<?php echo $this->params->get('link2radius'); ?>px;} #link2 a:hover {color: <?php echo $this->params->get('link2hovercolor'); ?>;text-decoration: none;background:<?php echo $this->params->get('link2hoverbg'); ?>; } #footer{ padding:<?php echo $this->params->get('footerpadding'); ?>;} body{ display:none;} <?php echo $this->params->get('customcss'); ?> <?php echo $this->params->get('customresponsive'); ?> </style> </head> <body> </body> </html>