Meteor在<body>
下插入模板的内容。有没有办法让它在其他地方插入?例如。在<div class='content'>
答案 0 :(得分:1)
不确定
的index.html:
<body>
<h1>Your Site Title</h1>
<p>Other stuff here</p>
<div class='content'>
{{> content}}
</div>
</body>
content.html:
<template name="content">
Inserted template stuff
</template>