Get a jump start building Drupal 8 and 9 themes using Stable Starter, a sub-theme of Stable.
In the Drupal project root, run:
composer create-project bmarshall511/stable_starter themes/custom/stable-starter dev-master
- Download the theme.
- Upload the stable-starter folder to the desired themes folder in your Drupal installation.
- Download gulp-starter.
- Upload the gulp-starter folder the the stable-starter theme folder and rename it to
assets
. - Install the required node modules in the assets folder by running
npm install
inside theassets
directory. - Download scss & upload it to the
assets/src
directory. - Enable and make it the active, default theme.
For information on developing and compiling resources within the assets folder, see the gulp-starter README.md.
stable_starter/stable_starter
- Includes the global, base non-critical CSS styles.
- Update the favicon.ico.
- Update the logo.svg.
- Update the screenshot.png.
- Compile assets for production by running
npm run build
.