freewaytofluency
Joined 11/18/2019
freewaytofluency said over 4 years ago on Using Bootstrap Themes :
The bootstrap theme I purchased didn't include minified css or js files. At about 6 mins in you imported these files into the application.js. What should I do in my case? I don't want to have to include every file manually.

freewaytofluency said over 4 years ago on Using Bootstrap Themes :
I went with a paid one called [LearnPlus ](https://themeforest.net/item/learnplus-learning-management-application/15287372) which is a theme for a learning management system (similar to a dashboard in many ways). There is an src folder and a dist folder in the theme. The src folder is written in a templating language called nunjacks so I guess it's best to ignore that. The dist folder has html for all the pages in the theme, manually importing every stylesheet and javascript file into each one through an assets folder. I guess this is the one that I need but there are so many minified css and js files in it. Do I need to import every single one into my rails app? The directory structure is such: dist - assets - css (a bunch of minified css files in here) - data (material icons and vector maps folders in here) - fonts (font awesome / material-icons folders in here) - images (various placeholder images used in the pages here) - js (a bunch of minifed js files in here) - vendor (a bunch of minified css and js files in here for all the various plugins like bootstrap.min.css, jquery.nestable.js) - html file - another html file - yet another html file etc...

freewaytofluency said over 4 years ago on Using Bootstrap Themes :
the spacing got stripped out when I posted the directory structure above so here we go again: dist - assets - css (a bunch of minified css files in here) - data (material icons and vector maps folders in here) - fonts (font awesome / material-icons folders in here) - images (various placeholder images used in the pages here) - js (a bunch of minifed js files in here) - vendor (a bunch of minified css and js files in here for all the various plugins like bootstrap.min.css, jquery.nestable.js) The html files are inside the dist folder, at the same level as the assets folder