Скрыть блок или H1 через свойства: HideH1 = "Y" HideH1URL = "/projects/"
на странице проджект заголовок будет, в детальной не будет.
<?
$isHideHeader = false;
$HideH1 = $APPLICATION->GetProperty("HideH1");
$HideH1URL = $APPLICATION->GetProperty("HideH1URL");
if ( $HideH1 == "Y" && $APPLICATION->GetCurPage(false) != $HideH1URL ) {
$isHideHeader = true;
}
?>
<? if ( !$isHideHeader ) { ?>
<div class="section__header-left">
<h1 class="h2"><?$APPLICATION->ShowTitle(false);?></h1>
</div>
<? } ?>