22 lines
668 B
JavaScript
22 lines
668 B
JavaScript
import editorInit from './editor';
|
|
import menuInit from './menus';
|
|
import singleConseil from './single-conseil';
|
|
import SchemaBulletPointsInit from './schema-bullet-points';
|
|
import taxonomyThematiqueFaqInit from './taxonomy-thematique-(faq)';
|
|
import archiveNewsInit from './archive-template-news';
|
|
import filterPublicationsInit from './archive-template-publications';
|
|
// window.addEventListener('load', function () {});
|
|
|
|
window.addEventListener('DOMContentLoaded', (event) => {
|
|
menuInit();
|
|
SchemaBulletPointsInit();
|
|
singleConseil();
|
|
editorInit();
|
|
|
|
taxonomyThematiqueFaqInit();
|
|
// NEWS
|
|
archiveNewsInit();
|
|
// PUBLICATIONS
|
|
filterPublicationsInit();
|
|
});
|