46 lines
1.8 KiB
HTML
Executable File
46 lines
1.8 KiB
HTML
Executable File
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, height=device-height">
|
|
<link rel="shortcut icon" href="<?=$config['views_url']?>img/favicon.png">
|
|
<? if (isset($head['css'])) {
|
|
foreach(explode(";",$head['css']) as $css) { ?>
|
|
<link rel="stylesheet" href="<?=$config['views_url']?>css/<?=$css?>"/>
|
|
<? }
|
|
}
|
|
else { ?>
|
|
<link rel="stylesheet" href="<?=$config['views_url']?>css/d.index.css"/>
|
|
<? } ?>
|
|
<link rel="stylesheet" href="<?=$config['views_url']?>third/fontawesome-free-5.4.1-web/css/all.min.css"/>
|
|
|
|
<script type="text/javascript" src="<?=$config['views_url']?>third/jquery-3.3.1.min.js"></script>
|
|
<? if (isset($head['third'])) {
|
|
foreach(explode(";",$head['third']) as $third) { ?>
|
|
<script type="text/javascript" src="<?=$config['views_url']?>third/<?=$third?>"></script>
|
|
<? }
|
|
} ?>
|
|
<script type="text/javascript" src="<?=$config['views_url']?>js/d.header.js"></script>
|
|
<? if (isset($head['js'])) {
|
|
foreach(explode(";",$head['js']) as $js) { ?>
|
|
<script type="text/javascript" src="<?=$config['views_url']?>js/<?=$js?>"></script>
|
|
<? }
|
|
} ?>
|
|
|
|
<? if (isset($head['title'])) { ?>
|
|
<title><?=$head['title']?> — Kabano</title>
|
|
<? }
|
|
else { ?>
|
|
<title>Refuges de montagne et métallerie agricole</title>
|
|
<? } ?>
|
|
<? if (isset($head['description'])) { ?>
|
|
<meta name="description" content="<?=$head['description']?>">
|
|
? }
|
|
else { ?>
|
|
<meta name="description" content="Entreprise de services dans la fabrication, la réparation, et l'entretien de bâtiments et machines agricoles">
|
|
<? } ?>
|
|
<? if (isset($head['keywords'])) { ?>
|
|
<meta name="keywords" content="<?=$head['keywords']?>">
|
|
<? }
|
|
else { ?>
|
|
<meta name="keywords" content="kabano, cabanes, refuges, bivouac, montagne, randonnée, métallerie, agricole">
|
|
<? } ?>
|
|
</head> |