私はdrupalが初めてです。新しい drupal テーマを作成しました。私のテーマは drupal ページに影響を与えました。コンテンツ ページの追加をクリックすると、コンテンツ ページがフォーマットされていません。新しいテーマにコンテンツを追加できません。ここに page--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>