Skip to content

Write your templates using Handlebars and Jade instead of HTML and Handlebars

Notifications You must be signed in to change notification settings

denysonique/Meteor-jade-handlebars

Repository files navigation

Meteor Jade Handlebars

Instead of writing (demo.html):

<head>
  <title>demo</title>
</head>

<body>
  {{> hello}}
</body>

<template name="hello">
  <h1>Hello World!</h1>
  {{greeting}}
</template>

###You may write (demo.jade):

head
  title demo

body
  {{> hello}}

  temlate(name="hello")
    h1 Hello World!
    {{greeting}}

Installation

Check out this repository into a folder named jade-handlebars in your packages directory $ meteor add jade-handlebars

Todo

Write tests

About

Write your templates using Handlebars and Jade instead of HTML and Handlebars

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published