我们怎样才能通过玉石和coffeescript在流星中添加包装,容器?

时间:2013-06-24 08:02:37

标签: meteor pug stylus

我是流星的新手,我正在努力建立简单的网站。现在我们可以通过简单的方式在jade中定义header,container:

!!!5
html
  head
    title #{title} - helloworld
    link(rel='stylesheet', href='/stylesheets/style.css')
  body
    header
      h1 helloworld
    .container
      .main-content
        block content
      .sidebar
        block sidebar
    footer
      p Running on node with Express, Jade and Stylus

但在流星中我们做的是:

head
  title helloworld
body
  {{> hello}}



template(name="hello")
p this is helloworld

现在我的问题是我们如何在流星中定义容器,主要内容?

提前谢谢!!!!

1 个答案:

答案 0 :(得分:1)

您的index.htmlwhatever_template.html只是html。 你可以将任何容器放在那个html和把手中。

所以你可以这样做:

的index.html

head
  title helloworld
body
  .container
    {{> hello}}

hello.html的

template(name="hello")
.another-container
  p this is helloworld

这会给你类似的东西:

head
  title helloworld
body
  .container
    .another-container
      p this is helloworld

(免责声明:我从来没有使用过Jade,我也是流星的新手(但是又一次,谁不是):))