Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:45:16 +08:00
commit 684fd0de77
12 changed files with 1344 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/**
* @file
* Custom JavaScript for THEMELABEL theme.
*/
(function (Drupal) {
'use strict';
Drupal.behaviors.THEMENAME = {
attach: function (context, settings) {
// Custom JavaScript code here
console.log('THEMELABEL theme loaded');
}
};
})(Drupal);