There is no license information available for the latest version (v2.0) of this package.

A Drupal 8 UBC CLF 7.0.4 theme

Installs: 7 899

Dependents: 1

Suggesters: 0

Security: 0

Stars: 5

Watchers: 12

Forks: 5

Open Issues: 6

Language:Twig

Type:drupal-theme

v2.0 2023-12-15 18:18 UTC

README

A responsive UBC CLF (Common Look and Feel) theme for Drupal 8+. Created by the UBC IT Web Services Department.

Galactus is a theme for Drupal 8+, providing UBC-branded units with the basic structure of the UBC CLF (Common Look and Feel).

If you need to modify the theme to suit your needs, we recommend forking it as a Starterkit extend this one instead.

Composer Install

If you're using composer, add the project with:

composer require ubc-web-services/galactus

Starterkit Fork

A starterkit fork will duplicate all the files from Galactus to your new theme to modify to your needs. See the Starterkit Documentation for more details.

Considering it's a galactus fork we recommend prefixing the fork with galactus_ although you can name it any name that doesn't conflict with another project installed on your Drupal site.

mkdir -p themes/custom
php core/scripts/drupal generate-theme --starterkit galactus --path themes/custom galactus_PROJECT

Internet Explorer Support

Drupal 8+ does not support Internet Explorer versions earlier than version 9 due to jQuery version incompatibilities. See this Change Record for more details.

Drupal 10+ has removed Internet Explorer support all together. See this Change Record for more details.

Contribution

CSS changes need to be made with SASS through sass node package.

Ensure that you have npm installed.

https://nodejs.org/en/download

Install the node packages with this command:

npm install

You can build your CSS changes with this command:

npm run build:css

OR

You can watch changes to your SASS files with this command:

npm run watch:css