What is the best way to implement a theme / template in meteor or angular-meteor

I’ve been having trouble implementing templates bought in themeforest in a meteor app.

I’m wondering, what would the best way to implement a template into a meteor app.

Two ways that I think of right now are:

(Tedious way)
Place javascript in Compatibility folder and try to name them in specific alphabetic order in order to get them to work properly.

Place css in client/lib folder and try to name them in specific alphabetic order in order to get them to work properly.

Place fonts and images in the public folder.


The second way (I haven’t tested it yet) is to place the template files in the public folder and just link them manually (the old/non-meteor way) in the index.html file.

Now I’m not sure if these are the correct ways to do this and I would like some information regarding this issue.

Thanks!

1 Like