2021-07-25 07:16:35 -04:00
|
|
|
// Import SCSS
|
|
|
|
import '../css/app.scss'
|
|
|
|
|
2021-07-26 13:07:57 -04:00
|
|
|
// Import svg files for webpack handling
|
2021-07-26 18:02:36 -04:00
|
|
|
import '../raw/rdnyc-logo.svg'; // rdnyc logo
|
2021-07-25 07:16:35 -04:00
|
|
|
// other:
|
2021-07-26 20:51:08 -04:00
|
|
|
import '../../node_modules/bootstrap-icons/icons/chevron-down.svg';
|
2021-07-28 22:51:24 -04:00
|
|
|
import '../../node_modules/bootstrap-icons/icons/chevron-left.svg';
|
|
|
|
import '../../node_modules/bootstrap-icons/icons/chevron-right.svg';
|
2021-07-26 20:51:08 -04:00
|
|
|
import '../../node_modules/bootstrap-icons/icons/search.svg';
|
2021-07-25 07:16:35 -04:00
|
|
|
|
|
|
|
// Import Bootstrap JS
|
|
|
|
import 'bootstrap/js/dist/collapse';
|
2021-07-26 13:07:57 -04:00
|
|
|
// import 'bootstrap/js/dist/alert';
|
2021-07-25 07:16:35 -04:00
|
|
|
import 'bootstrap/js/dist/button';
|
|
|
|
import 'bootstrap/js/dist/dropdown';
|
|
|
|
|
|
|
|
// import navbar burger code
|
|
|
|
import "./_hamburger-helper";
|
|
|
|
|
|
|
|
// highlight any code blocks tagged with class 'to-highlight'
|
|
|
|
document.addEventListener('DOMContentLoaded', (event) => {
|
|
|
|
document.querySelectorAll('code.to-highlight').forEach((el) => {
|
|
|
|
hljs.highlightElement(el);
|
|
|
|
});
|
|
|
|
});
|