我是drupal的新手。我创建了一个新的 drupal 主题。我的主题影响了 drupal 页面。如果我单击添加内容页面,内容页面未格式化。我无法在我的新主题中添加内容。在这里我粘贴了页面--front.tpl.php 文件。
<div id="wrapper">
<header id="header">
<div class="section clearfix">
<div class="logo_left">
<?php if ($logo): ?>
<a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home" id="logo">
<img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" />
</a>
<?php endif; ?>
</div>
<nav class="logo_right"><?php print render($page['header']);?></nav>
</div></header> <!-- /.section, /#header -->
<div id="menu">
<!--ul>
<li><a href="#">About</a></li>
<li><a href="#">Service</a></li>
<li><a href="#">Client</a></li>
<li><a href="#">Contact</a></li>
</ul-->
<?php print render($page['header_menus']); ?>
</div>
<div id="content">
<div id="leftcontent">
<div id="flash">
</div>
<div id="leftcontent1" >
<div class="rightcontentheader"> <h2>CLIENT REPORTING</h2></div>
<?php print render($page['block_one']); ?>
</div>
<div id="leftcontent2">
<div class="rightcontentheader"> <h2>AUTOMATED MARKETING</h2></div>
<?php print render($page['block_two']); ?>
</div>
</div>
<div id="rightcontent">
<div id="rightconent1">
<div class="rightcontentheader"> <h2>REAL ROI IMPACT</h2></div>
<?php print render($page['galery_right']); ?>
</div>
<div id="rightconent2">
<div class="rightcontentheader"><h2>LATEST NEWS</h2></div>
<?php print render($page['block_three']); ?>
</div>
</div>
</div>
<div id="footer">
</div>
</div>