tomitrescak / meteor-uploads

MIT License
295 stars 41 forks source link

Including upload_bootstrap using mquandalle:jade on Meteor 1.1 #227

Open jmoak3 opened 8 years ago

jmoak3 commented 8 years ago
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.