davis / plugin-hbs

Handlebars template loader plugin for SystemJS
MIT License
21 stars 9 forks source link

It works just with marionette? #6

Closed luisfmsouza closed 8 years ago

luisfmsouza commented 8 years ago

Does this plugin loader works without marionette?

davis commented 8 years ago

I haven't tested it outside of marionette, but it should work elsewhere - is it not working for you?

luisfmsouza commented 8 years ago

It wasn't, but after some troubles I figure out how to make it work.

Do you think is it a good idea add an example on README.md?

davis commented 8 years ago

Could you send me a way you got it to work? I would be glad to add non-marionette examples to the readme! thanks!

luisfmsouza commented 8 years ago

@davis here is how I did:

import template from './template.hbs!';
import data from './data.json!';

var html = template(data);

$('#content').html(html);
davis commented 8 years ago

I'll add this example to the readme. Thanks!