0

我一直在编辑我的 MyBB portal.php,直到最近它显示还不错。我在最近的帖子上方添加了一个自定义欢迎块,它显示得很好。

今天我进去整理代码,添加新行(回车)和缩进让代码更易读。现在,在这样做之后出现了严重错误。它没有显示完整的 MyBB 页面样式,而是显示了 {$header} 之类的标签。这是代码:

<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr><td valign="top" width="200">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
</td>
<td>&nbsp;</td>
<td valign="top">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
    <tr>
        <td class="trow1">
            <span class="smalltext">
<!--Main Welcome Panel-->
        <p style="text-align: center;">
            <img alt="" src="http://axelcraft.net/images/welcome.png" style="width: 1024px;" /></p>
        <p style="text-align: center;">
            <span style="color:#696969;"><span style="font-size: 24px;"><em><span style="font-family: hutrmold;">Get ready for a whole new minecraft experience.</span></em></span></span></p>
<!--Slideshow-->
<center>
    <iframe src="http://axelcraft.net/images/slides/slideshow.html" width="800" height="320" scrolling="no" frameBorder="0" style="overflow:hidden;"></iframe>
</center>
<!--End Slideshow-->
        <p style="text-align: center;">
            <span style="font-size:20px;">
                <span style="font-family: 'trebuchet ms', helvetica, sans-serif;">
                    Thanks for visiting AxelCraft! Start by <a href="http://axelcraft.net/member.php?action=register"><span style="color:#385947;"><span style="">signing up</span></span></a> to get the latest news and updates on the server as well as to register for <a href="http://axelcraft.net/forumdisplay.php?fid=9"><span style="color:#385947;">contests</span></a> and <a href="http://axelcraft.net/forumdisplay.php?fid=19"><span style="color:#385947;">events</span></a>!
                </span>
            </span>
        </p>
<!--End Welcome Panel-->
            </span>
        </td>
    </tr>
</table>
<br />
{$announcements}
</td>
</tr>
</table>
{$footer}
</body>
</html>

现在,当您导航到 portal.php 时,它只显示 {$} 标记以及 html 段落。它应该像 MyBB 一样左右显示侧边栏和标题。看看我在这里的意思。

将其与此处的普通论坛页面进行比较。

我不知道出了什么问题或为什么不能正确显示。

4

1 回答 1

-1

我可能是错的,但你在这里错过了一个'>'

<tr><td

<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr><td valign="top" width="200">
于 2013-10-15T00:37:11.300 回答