ro
8bf640ee18
conversion of markdown files to html works fine, but the coresponding css, js and image assets were not being moved, so the class responsible for moving them was edited so theme assets are moved to their appropriate directories when the site is published. also made some css and image edits, and removed a legacy css files that were no longer in use
10 lines
139 B
JavaScript
10 lines
139 B
JavaScript
import Base from "./Base.js";
|
|
|
|
document.addEventListener(
|
|
"DOMContentLoaded",
|
|
function () {
|
|
var base = new Base();
|
|
},
|
|
false
|
|
);
|