Bootstrap theme in Meteor

Hey,

Im very new to Meteor, im having a hard time to fit a startbootstrap theme to my Meteor app. http://startbootstrap.com/template-overviews/agency/

I’m able to have all the html and css. My problem is the js part, I tried to put all the js content in

 `Template.Home.onRendered(function() {
      //all js files' content here
  });`

But i cant get to work all the transitions part of the original theme. What is the right thing to do?

Thanks

  1. Create an html file called “head.html” and place it in a folder like “shared” or something like that.
  2. Create a head tag and add the JS in through a script tag.
  3. This should all happen within the client folder.

I had similar issues when I did the migration of smartadmin (which is a lot more complicated). Anyway do it in stages…

  1. meteor create newapp
  2. meteor remove jquery
  3. unzip the template files into public
  4. just the index.html copy it over to client

See if that works for you.

1 Like