I would like to know if there is some kind of tutorial or guide how I can integrate an already designed theme with meteor core structure. For example I have this template here: http://startbootstrap.com/template-overviews/creative/ that I integrated into this: http://sailsadria.meteor.com/ I managed to setup the CSS and HTML but the JS is killing me. You can see this includes that he needs:
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="js/jquery.easing.min.js"></script>
<script src="js/jquery.fittext.js"></script>
<script src="js/wow.min.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/creative.js"></script>
I have added bootstrap and Jquery via packages but don't know if that does the trick?
And yeah this guy has some cool solutions: https://www.yauh.de/using-pre-made-themes-with-meteor/ but I really didn't understand the part where he explains how to integrate the custom JS files
How can I include all those files into the meteor structure? Any help appreciated!