This theme is intended to be used for PSU Branded Libraries Drupal sites. This is based on the Bootstrap 5 framework.
This base theme is easiest to develop using a theme generated using the drupal-site-template or using the site template itself. This will use the psul-web site as an example.
gh repo clone psu-libraries/psul-web;
cd psul-web;
ddev start;
ddev composer install;
ddev drush si --existing-config;
ddev develop-theme;
ddev theme-build;
ddev launch;
ddev develop-theme;
ddev theme-build;
ddev launch;
SCSS used to generate styles that will be used everywhere are defined in the ./scss
directory. Styles cannot or should be associated with a single components will live here. These can be organized in to separate files in the ./scss/base
directory.
The theme has a number of Single Directory Components (SDC) defined in the ./components
directory. We should use SDC where appropriate. This allows for easier development and code reusability.
To add a new components you will need to do the following. This will create a SDC component for you to start with.
ddev drush generate sdc
If your component is only using props then you can use an include:
{% include 'psulib_base:COMPONENT' with {
prop_name: variable,
} %}
If your component is using slots then you will need to use an embed:
{% embed 'psulib_base:header' with {
prop_name: variable,
}
%}
{% block slot %}
{{ page.region }}
{% endblock %}
{% endembed %}
If you want to completely override a SDC in a subtheme you can do with the following steps:
replaces: psulib_base:COMPONENTNAME
to the COMPONENTNAME.component.yml
fileNote you should NOT change the props or slots because that will cause issues.
If you only need to change the styles for a SDC you can remove the SDC css file and build the desired styles in your subtheme SCSS. There is an open ticket to implement a better way of handling this so we should probably avoid doing this for the time being.
subtheme.info.yml
file to override the component stylesheet.
libraries-override:
core/components.psulib_base--COMPONENTNAME:
css:
component:
../../../themes/custom/psulib_base/components/COMPONENTNAME/COMPONENTNAME.css: {}
The psulib_base theme can be used as a standalone theme but can also act as a base theme if custom styles are required. There are 3 ways to use this base theme, which are listed below.
To use this base theme, you must first add the base theme repository in your site's composer.json (either manually or with this command):
ddev composer config repositories.psul/theme-base github "https://github.com/psu-libraries/psulib_base.git"
Then, require the actual base theme:
ddev composer require psu-libraries/psulib_base
and install it with Drush
ddev drush theme:enable psulib_base
If you are using this as a standalone theme then you will need to run the following command after the theme has been installed.
ddev drush config-set system.theme default psulib_base;
If you want to use all styles in the base theme BUT add additional styles for your site. You will be able to use scss variables
and mixins
but NOT extends
as the
ddev generate-subtheme SUBTHEMENAME;
Update the styles.scss with the following.
// Include bootstrap.
@import '../../../../themes/contrib/psulib_base/scss/init';
// Sub theme styling.
Update webpack.mix.js
file to exclude base theme specific components. This should look like the following.
// webpack.mix.js
let mix = require('laravel-mix');
// Use relative URL so fonts will work.
mix.sass('scss/style.scss', 'dist/css')
.options({
processCssUrls: false
});
// Combine custom javascript into the application.js file.
mix.combine('js/base', 'dist/js/application.js');
If you want to override ALL styles coming from the base theme.
ddev generate-subtheme SUBTHEMENAME;
Update the styles.scss with the following to re-build the styles in the base theme. (THIS NEEDS WORK. The scss does not allow you to override variables.)
// Include bootstrap.
@import '../../../../themes/contrib/psulib_base/scss/style';
// Sub theme styling.
Add the following to the subtheme *.info.yml
file to exclude the base theme library so styles are lot loaded twice:
libraries-override:
psulib_base/global-styling:
css:
theme:
dist/css/style.css: {}
Update webpack.mix.js
file to exclude base theme specific components. This should look like the following.
// webpack.mix.js
let mix = require('laravel-mix');
// Use relative URL so fonts will work.
mix.sass('scss/style.scss', 'dist/css')
.options({
processCssUrls: false
});
// Combine custom javascript into the application.js file.
mix.combine('js/base', 'dist/js/application.js');
Since there is no current CI/CD process to build out the assets on demand, the bootrap icons are copied into the target theme on npm install.
There is a postinstall script to copy fonts/icons into ./assets/bootstrap/fonts
Once this has run you can use it as documented on https://icons.getbootstrap.com:
<i class="bi-alarm" style="font-size: 2rem; color: cornflowerblue;"></i>
For more information about creating a subtheme: