Initial commit, patched theme and main pages

This commit is contained in:
2023-12-02 23:00:23 +01:00
commit e4461a0b6f
181 changed files with 27306 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
module Jekyll
module ShuffleFilter
def shuffle(array)
array.shuffle
end
end
end
Liquid::Template.register_filter(Jekyll::ShuffleFilter)