<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta property="og:title" content="<?=$arFields['NAME']?>" />
<meta property="og:image" content="<?=$URLPicture?>" />
</head>
$arPicture = CFile::GetPath($arFields["DETAIL_PICTURE"]);
$URLPicture = "https://". $_SERVER['SERVER_NAME'] . $arPicture;
?><img src="<?=$URLPicture?>"><?
$date = date('Y-m-d');
$timestamp = MakeTimeStamp($date, 'YYYY-MM-DD');
$convertDateTime = ConvertTimeStamp($timestamp);
$arSelect = Array("ID", "NAME", "DATE_ACTIVE_FROM", "DATE_CREATE", "PROPERTY_ID_VK");
$arFilter = Array("IBLOCK_ID"=>16, "PROPERTY_ID_VK" => false, "ACTIVE" => "Y", ">=DATE_ACTIVE_FROM" => $convertDateTime);
$res = CIBlockElement::GetList(Array(), $arFilter, false, Array("nPageSize"=>100), $arSelect);
?><pre><?print_r($convertDateTime)?></pre><?
while($ob = $res->GetNextElement())
{
$arFields = $ob->GetFields();
$arProps = $ob->GetProperties();
?><pre><?print_r($arFields)?></pre><?
}