0

我们正在从 1.5 迁移(我应该说是迁移)到 2.5 并且我们从 1.5 修订的模板正在工作,除了它在使用时不会显示任何内容。请帮忙!

这是代码:

  <body>
    <div id="container">
      <div id="header"> <a href="<?php echo $this->baseurl ?>/home.html"><img src="images/stories/blank.gif" width="180" height="93" border="0" alt="Home"></a>
        <div id="hdnav">
          <jdoc:include type="modules" name="headnav" style="none" />
        </div>
      </div>
      <div style="clear:both;"></div>
      <div id="navigation">
        <div id="topnav">
          <jdoc:include type="modules" name="topnav" style="none" />
        </div>
      </div>
      <div style="clear:both;"></div>
      <div id="content">
        <div id="maincontent">
          <jdoc:include type="message" />
          <jdoc:include type="component" />
        </div>
        <?php if($this->countModules('right')) : ?>
        <div id="rightcol">
          <jdoc:include type="modules" name="right" style="xhtml" />
        </div>
        <?php endif; ?>
      </div>
      <div id="footer">
        <jdoc:include type="modules" name="footer" style="none" />
      </div>
    </div>
    <jdoc:include type="modules" name="debug" />
    </body>
   </html>
4

1 回答 1

0
  1. 风格

请花时间为 div 编写新的 CSS。桌子很古老,很容易损坏,在移动设备上简直就是一场噩梦。

  1. 覆盖

如果你这样做 1. 你将不需要它们。无论如何,他们真的很容易。

模板覆盖只是一个组件或模块视图模板,它被复制到模板的 html 子文件夹下(在稍微不同的文件夹结构中),Joomla 将使用这些而不是原始文件。
因此,例如,如果您想覆盖文章视图,它位于

/components/com_content/views/article/tmpl/

它的覆盖将被放置在

/templates/your_template/html/com_content/article

一个小问题:确保您始终复制整个 tmpl 组件文件夹,您必须覆盖模板内的所有布局。

您可以在http://docs.joomla.org/How_to_override_the_output_from_the_Joomla!_core上找到更多信息

于 2013-02-27T23:22:07.853 回答