Failed to include css and js in Meteor

File structure:

->client
  ->imports
    ->asssets (external js)
  ->stylessheets
    ->css
    ->less
  ->ui (components, layouts, pages)
  ->main.js (startup file)
->imports
  ->main.js (empty)
->lib
  ->collections
  ->route.js
->server
  ->methods.js
  ->server.js

I’m taking the js file and css from a theme which i downloaded, i looked at the sample html file from the theme, and i try to include the file as they were doing, in the main.js startup file, i included all the js according to order from the sample html using:

$.getScript('path-file1.js', function(){
  $.getScript('path-file2.js', function(){
  ....//About 10 js(s), included according to order as the html sample file
  });
});

The external css files was included inside header.html which is inside the ui/ folder, the css is included as order, as the sample html.
The theme uses bootstrap but overide them and add few new classes to it. As i try to build my front-end, some css or js is not working, the only error on client console was:

Uncaught SyntaxError: Unexpected token <  at DOMEval (printer.js:170), at Function.globalEval (printer.js:170), at text script (printer.js170), at ajaxConvert (printer.js:170), at XMLHttpRequest. <annonymous> (printer.js.:170)

Some of the js and css works, as i saw some changes on the font, and there’s animation which i expected, but some are not, i’m suspecting that this is load order problem but i don;t know how to fix this, been on google and forum but no luck.
Thanks very much for just looking at it and thanks for helping beforehand, and sorry about the text, it is my first time here in Meteor forum, so if i made any mistake please point it out and i will correct it.

This means that you have an error in one of your html tags. Maybe an unclosed tag or missing “>” or some misplaced html code that prevents html from being parsed correctly.
Normally you should see where the error is occuring (in which file and cursor position) in the Command prompt window where you launch meteor.

Oh ok I will look for it in my file and fix it, thanks you. While i was waiting for reply, I tried to uncomment some of packages in .meteor (hidden file in meteor folder), some jquery error are gone, and i try to test the stying by copying over the theme index.html, remove its html body heading and script tag, leaving only body content and set its template name to use it in meteor, I copy the js into compatibility folder but the stying still missing.

Here is my progress so far, as i search google and meteor forum, i moved my external JS file from the theme that i downloaded from web to compatible folder, which the structure now is:

-> client
  ->compatibility(external js files in here)
  ->stylesheets(external css files in here)
  ->ui(components, layouts, pages)
  ->main.js
  ->main.css
->lib
  ->collections
  ->route.js
->server
  ->methods.js
  ->server.js

After i moved the external js file to compatibility folder, and the css file to stylesheets folder, i have to look into the theme source code, the sample index.html of the theme, to see which js and css order that they included, so i renamed the external js and external css as order to let Meteor load according to it. So far 80% of the theme works, css works, some js also working except there are some feature of the theme does not work.
As i investigate more, i noticed that some NodeJs package of the theme does that work. Some of feature i want to use, which is the datatables, calender and scrollbar styling, does not work, I’m not sure about this but i think the problem was related to NodeJs package, because inside sample index.html source code, the datatables part, only use:

<div class="table" data-toggle="data-table" cellspacing="0" width="100%">
  //some table content here//
</div>

when i inspect the sample index.html element, the div tag which contains table class changed, and has lots of other classes pop up in there, and then i check my own project, the div tag which contains table class there stays as it is.
So please if anyone had anymore idea continue from this please help and thanks very much.