我对 drupal 7 中的区域有疑问。这是我的主题中 page.tpl.php 文件的代码。我已经在我的主题文件夹中的 Leadsnow.info 文件中声明了这些区域。但不知道如何使用它们。就像如果我想在一个区域内保留一段 html 标签,我将如何做到这一点。我是否需要创建任何文件并将这些 div 放在某个文件中,如果需要,请指导我。我是 drupal 新手,想从自定义的原始 html 文件创建一个 drupal 主题。请帮忙。
//======page.tpl.php==========
<?php if ($page['header']): ?>
<?php print render($page['header']); ?>
<?php endif; ?>
<?php print render($page['content']);
<?php print render($page['footer']); ?>