Html 为什么我的流星没有在身体上显示任何东西?

Html 为什么我的流星没有在身体上显示任何东西?,html,meteor,spacebars,Html,Meteor,Spacebars,这是我的HTML文件。它并没有表现出你好,但它表现出了对丑陋行政方面的欢迎 <head> Welcome to the ugly administrative side. </head> <body> hi {{#if currentUser}} Hello {{> loginButtons}}<br> {{> home}} {{else}} {{>

这是我的HTML文件。它并没有表现出你好,但它表现出了对丑陋行政方面的欢迎

<head>
    Welcome to the ugly administrative side.

</head>

<body>
    hi
    {{#if currentUser}}
        Hello {{> loginButtons}}<br>
        {{> home}}
    {{else}}
        {{> loginButtons}}
    {{/if}}

</body>

<template name="home">
    {{#if adminFlag}}
        {{> adminPage}}
    {{else}}
        You aren't an administrative user, there's nothing for you here.
    {{/if}}
</template>

我很确定这是TextMate的一个小故障,因为它一直意外地关闭。当TextMate停止工作时,它开始正常显示。

尝试输出最简单的东西,看看它是否工作。您是否安装了accounts ui软件包?