* added new entry page

This commit is contained in:
Stephan Hadan 2024-12-27 17:54:58 +01:00
parent 6e5614763d
commit e500631b7f
13 changed files with 666 additions and 2373 deletions

View file

@ -0,0 +1,6 @@
document$.subscribe(function() {
var tables = document.querySelectorAll("article table:not([class])")
tables.forEach(function(table) {
new Tablesort(table)
})
})