0

我在drupal中创建了主页。它工作正常。但我无法创建其他页面(例如,服务联系人,客户端。)(主页和其他页面不同)。我创建了page.tpl.php。我可以在 .info 文件中创建区域吗?在这里我附上了我的 page.tpl.php 文件。请任何人告诉我。(其他页面格式,如一个 leftcontent 和 2 rightcontent 结构。)。page.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">
                                                                                                                            <article>
        <div id="content" class="column">
            <?php
            $url = request_uri();
            if(strpos($url, "user"))
            {
            }
            else
            {
            ?>
        <?php if ($breadcrumb): ?>
          <div id="breadcrumb"><?php print $breadcrumb; ?></div>
        <?php endif; ?>

4

1 回答 1

0

为主页创建另一个文件“ page--front.tpl.php ”,其他文件可以使用page.tpl.php

您可以使用以下链接在“默认首页”上设置主页

“管理员/配置/系统/站点信息”

于 2013-07-01T05:34:35.320 回答