tomitrescak/meteor-uploads

Including upload_bootstrap using mquandalle:jade on Meteor 1.1

Opened this issue · 0 comments

template(name='user_take_photo')
    +upload_bootstrap

is equivalent to

<template name="user_take_photo">
    {{> upload_bootstrap }}
</template> 

inside of mquandelle's jade tools for Meteor, however nothing seems to be working - I only get a white page with no error.

When my jade file contains

template(name='user_take_photo')
    | Hello World

Hello world appears, meaning there must be some sort of issue between the template I'm including and the jade support.

I've tried including an html file containing {{> upload_bootstrap }}, and inserting {{> upload_bootstrap}} into the page as text using | {{> upload_bootstrap }}. These didn't work.

Would you have any idea how to handle this? I'm relatively new to webdev, and would love any ideas.