I am newbie in meteor and I am trying to build simple website. Now we can define header,container in jade by simple doing it:
!!!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
But in meteor we do by:
head
title helloworld
body
{{> hello}}
template(name="hello")
p this is helloworld
Now my question is how can we define container, main-content in meteor ??
Thank You in advance!!!!