evpp / evpp_utdk3_theme
Drupal theme used with the UT Drupal Kit
Installs: 270
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Language:CSS
Type:drupal-custom-theme
This package is auto-updated.
Last update: 2024-10-29 06:31:00 UTC
README
This is a Drupal theme maintained by the Office of the Executive Vice President and Provost for use with the UT Drupal Kit. It is based on the Bootstrap library v4.
Contents
Development
Setup
Developers first will need to install NodeJS and NPM on their local development machine.
Tip
Using Node Version Manager (NVM) is now recommended for installing Node. It is not required, however, and you may continue to use a global installation of Node.
Your subtheme of Forty Acres will include a package.json
file, which defines package dependencies needed for theme development. The gulpfile.js
file additionally defines tasks for linting and compiling CSS. From the root directory of your subtheme, run:
npm install
This will generate a node_modules/
directory of dependencies. This directory should not be versioned as part your codebase; if you are using Git for version control, you should add this directory to your .gitignore
file so it will not be committed to your repository.
Writing & compiling SCSS
The CSS rendered for a Drupal theme is defined in that theme’s .libraries.yml
file (see Adding stylesheets (CSS) and JavaScript (JS) to a Drupal theme). When using an SCSS workflow, however, you should not directly modifiy the referenced CSS files: the /css
directory in your theme represents the compiled version of any SCSS files you are using.
Instead, you should edit the SCSS. There are a handful of boilerplate SCSS files located in the /src/scss
directory to get started.
To build the CSS for use with your theme, run:
npm run gulp
Whenever a code change is saved to your SCSS, Gulp will recompile all SCSS files located in /src/scss
into CSS equivalents in /css
, and will autoprefix the CSS for cross-browser support.
Additionally, this Gulp task will “lint” your SCSS, enforcing syntax standards to make your code more consistent and readable. Syntax rule violations will print directly to your terminal window during the build process.
Hint
The command
npm run gulp
(as opposed to simplygulp
) runs using the locally installed version of Gulp, located atnode_modules/gulp/bin/gulp.js
, ensuring that an expected version of the task runner is used.