41 lines
1.4 KiB
PHP
41 lines
1.4 KiB
PHP
<?php
|
|
if (!defined ('B_PROLOG_INCLUDED') || B_PROLOG_INCLUDED !== true)
|
|
{
|
|
die();
|
|
}
|
|
|
|
/** @var \CMain $APPLICATION */
|
|
|
|
if (!\Bitrix\Main\Loader::includeModule('landing'))
|
|
{
|
|
return;
|
|
}
|
|
|
|
\Bitrix\Landing\Connector\Mobile::prologMobileHit();
|
|
$language = \Bitrix\Landing\Manager::getLangISO();
|
|
?><!DOCTYPE html>
|
|
<html xml:lang="<?= $language;?>" lang="<?= $language;?>" class="<?php $APPLICATION->ShowProperty('HtmlClass');?>">
|
|
<head>
|
|
<?php $APPLICATION->ShowProperty('AfterHeadOpen');?>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, width=device-width">
|
|
<meta name="HandheldFriendly" content="true" >
|
|
<meta name="MobileOptimized" content="width">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<title><?php $APPLICATION->ShowTitle();?></title>
|
|
<?php
|
|
$APPLICATION->ShowHead();
|
|
$APPLICATION->ShowProperty('MetaOG');
|
|
$APPLICATION->ShowProperty('BeforeHeadClose');
|
|
?>
|
|
</head>
|
|
<body class="<?php $APPLICATION->ShowProperty('BodyClass');?>" <?php $APPLICATION->ShowProperty('BodyTag');?>>
|
|
<?php
|
|
/*
|
|
This is commented to avoid Project Quality Control warning
|
|
$APPLICATION->ShowPanel();
|
|
*/
|
|
?>
|
|
<?php $APPLICATION->ShowProperty('Noscript');?>
|
|
<?php $APPLICATION->ShowProperty('AfterBodyOpen');?>
|
|
<main class="w-100 <?php $APPLICATION->ShowProperty('MainClass');?>" <?php $APPLICATION->ShowProperty('MainTag');?>>
|