Try installing the foundation sites (v6) at the root of your Middleman project using NPM:
cd middleman-project npm init -y npm install foundation-sites --save
Then in the file source/stylesheets/site.css.scss add:
@import '../../node_modules/foundation-sites/scss/foundation'; @include foundation-everything;
It works! Finally, you can look at the foundation.scss file and configure what foundation-everything loaded.
ranieribt
source share