main.js mostly done,

started implmenting contentUtility.js
added sort options to index.html
This commit is contained in:
J-Klinke
2024-06-20 15:07:00 +02:00
parent d5fd98a066
commit 65d9e8ea1f
3 changed files with 56 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
function fetchQuery(fetchString) {
fetch(fetchString)
.then(resp => resp.json())
.then((data) => {
parseContent(data.content);
});
}
function parseContent(content) {
}