Spacebars

Spacebars

Documentation of Meteor's `spacebars` package.

Spacebars is a Meteor template language inspired by Handlebars. It shares some of the spirit and syntax of Handlebars, but it has been tailored to produce reactive Meteor templates when compiled.

Getting Started

A Spacebars template consists of HTML interspersed with template tags, which are delimited by {{ and }} (two curly braces).

<template name="myPage">
  <h1>{{pageTitle}}</h1>


  {{> nav}}

  {{#each posts}}
    <div class="post">

      <h3>{{title}}</h3>

      <div class="post-content">

        {{{content}}}
      </div>

    </div>

  {{/each}}
</template>

As