WIP: Major content update

This commit is contained in:
2022-06-13 17:39:51 +02:00
parent 3ca7604967
commit 01d0a2c796
352 changed files with 84802 additions and 58 deletions

2
scripts/build.sh Executable file
View File

@ -0,0 +1,2 @@
git pull
hugo -s . -d static/public

15
scripts/replace_style.awk Normal file
View File

@ -0,0 +1,15 @@
#!/bin/awk
BEGIN{style_flag=0}
/<style>/{
style_flag=1
}
//{
if(style_flag == 0) print $0
}
/<\/style>/{
style_flag=0
print f1
}