head.tpl.php 1.3 KB

1234567891011121314151617181920212223
  1. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  2. <meta http-equiv="content-language" content="fr-fr" />
  3. <title><?php echo $this->header["title"]; ?></title>
  4. <meta name="description" content="<?php echo $this->header["description"]; ?>" />
  5. <meta name="author" content="Ardèche Miniatures" />
  6. <meta name="robots" content="index, follow" />
  7. <?php if (isset($this->header["meta"]) && is_array($this->header["meta"])) foreach($this->header["meta"] as $i=>$j) { ?>
  8. <meta name="<?php echo $i; ?>" content="<?php echo $j; ?>" />
  9. <?php } ?>
  10. <link rel="icon" type="image/png" href="/img/logo/ardeche-miniatures-icon-16.png"/>
  11. <link rel="shortcut icon" href="/img/logo/ardeche-miniatures-icon-16.ico" />
  12. <link rel="publisher" href="https://plus.google.com/+Ardeche-miniatures" />
  13. <link rel='canonical' href='<?php echo (SSL ?'https' :'http').'://'.DOMAIN.$this->header["url"]; ?>' />
  14. <link rel="stylesheet" type="text/css" href="/css/common.css" media="all"/>
  15. <link rel="stylesheet" type="text/css" href="/vendor/bootstrap/css/bootstrap.min.css" media="all"/>
  16. <link rel="stylesheet" type="text/css" href="/css/jcarousel.basic.css" media="all"/>
  17. <?php if (isset($this->header["css"]) && is_array($this->header["css"])) foreach($this->header["css"] as $i) if ($i) { ?>
  18. <link rel="stylesheet" type="text/css" href="/css/<?php echo $i; ?>.css"/>
  19. <?php } ?>