流星模板插入点

时间:2014-04-29 07:10:58

标签: meteor

Meteor在<body>下插入模板的内容。有没有办法让它在其他地方插入?例如。在<div class='content'>

1 个答案:

答案 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>