-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
35 lines (31 loc) · 1.03 KB
/
header.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/*
* This file is part of the Studio Fact package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
if (!defined('B_PROLOG_INCLUDED') || B_PROLOG_INCLUDED !== true) {
die();
}
use Bitrix\Main\Localization\Loc;
Loc::loadMessages(__FILE__);
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="<?= LANG_CHARSET ?>"/>
<meta name="viewport" content="width=device-width,initial-scale=0.6">
<link rel="shortcut icon" type="image/x-icon" href="<?= SITE_TEMPLATE_PATH ?>/favicon.ico"/>
<title><?= $GLOBALS['APPLICATION']->ShowTitle() ?></title>
<?
$GLOBALS['APPLICATION']->ShowMeta('robots', false, true);
$GLOBALS['APPLICATION']->ShowMeta('keywords', false, true);
$GLOBALS['APPLICATION']->ShowMeta('description', false, true);
$GLOBALS['APPLICATION']->ShowCSS(true, true);
$GLOBALS['APPLICATION']->ShowHeadStrings();
$GLOBALS['APPLICATION']->ShowHeadScripts();
?>
</head>
<body>
<? $GLOBALS['APPLICATION']->ShowPanel() ?>