Aeon is a base theme for Drupal. Aeon has Sass, Gulp, BrowserSync along with an option to use Foundation or eXo.
- Download and enable
aeon:
Drupal 8
drush dl aeon
drush en aeon -y
drush config-set system.theme default aeon -yDrupal 9 & 10
drush dl aeon
drush theme:enable aeon -y
drush config-set system.theme default aeon -y- Create a sub-theme:
- NOTE: The default sub-theme will be based on Foundation. To include eXo and remove Foundation, create a sub-theme with the Valerian kit using:
drush --include=web/themes/aeon aeon "SUBTHEME NAME" --kit=valerianor if installed viacomposer, include your install path ofcontriborcomposerdirectory,drush --include=web/themes/contrib/aeon aeon "SUBTHEME NAME" --kit=valerian - NOTE: If you intend on using the Valerian Kit and you cloned the repo, checkout the proper branch otherwise it will fail to load.
- NOTE: The default sub-theme will be based on Foundation. To include eXo and remove Foundation, create a sub-theme with the Valerian kit using:
drush cc drush
drush aeon "SUBTHEME_NAME"- Set default theme:
Drupal 8
drush en SUBTHEME_NAME
drush config-set system.theme default SUBTHEME_NAME -yDrupal 9
drush theme:enable SUBTHEME_NAME -y
drush config-set system.theme default SUBTHEME_NAME -y- Install required modules:
Default
cd /path/to/subtheme/dev
npm installValerian Kit
cd /path/to/subtheme/
npm install- Update proxy in
/path/to/subtheme/dev/config/config.local.json - Run
gulpto watch for Sass changes