Reworking of projects page

This commit is contained in:
2025-01-03 22:08:04 +00:00
parent e0e60830be
commit 028103d321
16 changed files with 220 additions and 84 deletions

View File

@@ -0,0 +1,11 @@
window.onload = function () {
var project_filter = document.getElementById("filter_category");
project_filter.onchange = function () {
if (project_filter.value == 'all') {
window.location.href = '/projects';
}
else {
window.location.href = '/projects/category/' + project_filter.value;
}
}
}