Compare commits

..

No commits in common. "86bbcfd935f71e4f01718128e313a88be7d7d6da" and "04648315a8509bc1536171f44f80f744b1f37cb2" have entirely different histories.

343 changed files with 32 additions and 148 deletions

27
Makefile Normal file
View File

@ -0,0 +1,27 @@
OUTPUT_DIR=./output
WEB_ROOT=/var/www/themusicinnoise.net/main
.PHONY: all pages blog clean install
all: pages blog
cp -r static/* $(OUTPUT_DIR)
pages:
mkdir -p $(OUTPUT_DIR)
find pages -type f -name '*.cfg' -print0 | sort -zr | xargs -0 saait -o $(OUTPUT_DIR)/
blog:
mkdir -p $(OUTPUT_DIR)/blog
cat templates/page/header.html blog/templates/index.html/header-part.html > blog/templates/index.html/header.html
sed -i -e 's/\$${title}/Blog/' blog/templates/index.html/header.html
cat blog/templates/index.html/footer-part.html templates/page/footer.html > blog/templates/index.html/footer.html
find blog/posts -type f -name '*.cfg' -print0 | sort -zr | xargs -0 saait -o $(OUTPUT_DIR)/blog/ -t blog/templates/
clean:
rm -rf $(OUTPUT_DIR)
rm -f blog/templates/index.html/header.html
rm -f blog/templates/index.html/footer.html
install: all
mkdir -p $(WEB_ROOT)
cp -r $(OUTPUT_DIR)/* $(WEB_ROOT)/

View File

@ -1,13 +0,0 @@
# The Music in Noise (Source Code)
This is the source code for my personal website, [The Music in
Noise](https://themusicinnoise.net/).
## Licensing
All documents generated by the website are licensed [CC-BY-ND 4.0
International](https://creativecommons.org/licenses/by-nd/4.0/deed.en). The
source code itself is All Rights Reserved unless otherwise specified (e.g. the
build script). The main reason I publish this is so people can see __how__ I
make my website and (if they are so inspired) copy the model, __not the
content__.

Some files were not shown because too many files have changed in this diff Show More