Как возможно удалить или скрыть весь контент и блоки на главной странице? Чтобы вообще было пусто на главной.
Пробовал удалять main-content и sidebar в page.tpl.php, но тогда контент и блоки удаляются на всём сайте
page.tpl.php:
<?php
<!--#main-content -->
<div id="main-content" class="container clearfix">
<?php if ($page['sidebar_first']) :?>
<!--.sidebar first-->
<div class="one-fourth">
<aside class="sidebar">
<?php print render($page['sidebar_first']); ?>
</aside>
</div>
<!--EOF:.sidebar first-->
<?php endif; ?>
<?php if ($page['sidebar_first'] && $page['sidebar_second']) { ?>
<div class="one-half">
<?php } elseif ($page['sidebar_first']) { ?>
<div class="three-fourth last">
<?php } elseif ($page['sidebar_second']) { ?>
<div class="three-fourth">
<?php } else { ?>
<div class="clearfix">
<?php } ?>
<!--#main-content-inside-->
<div id="main-content-inside">
<?php print render($title_prefix); ?>
<?php if ($title): ?><h1><?php print $title; ?></h1><?php endif; ?>
<?php print render($title_suffix); ?>
<?php if ($tabs): ?><div class="tabs"><?php print render($tabs); ?></div><?php endif; ?>
<?php print render($page['help']); ?>
<?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
<?php print render($page['content']); ?>
</div>
<!--EOF:#main-content-inside-->
</div>
<?php if ($page['sidebar_second']) :?>
<!--.sidebar second-->
<div class="one-fourth last">
<aside class="sidebar">
<?php print render($page['sidebar_second']); ?>
</aside>
</div>
<!--EOF:.sidebar second-->
<?php endif; ?>
</div>
<!--EOF: #main-content -->
?>
Комментарии
page--front.tpl сделать и править как хотите
Спасибо, работает