/website-sources

A repository to manage and version my websites

Primary LanguageHTMLGNU General Public License v3.0GPL-3.0

website-sources

A repository to manage my websites.

Please look out for license files!
I only wrote the content of my 'luctus.at' and 'luctus.at/book' website and not the design itself. The design is made by "html5up.net | @ajlkn" with a "CC BY 3.0" license.
Everything else, if not explicitly specified, is licensed as "GNU GPLv3".

Current websites:

Why upload your website?

I created an automated process that fetches git pushes and updates the websites accordingly. No more manual file copying from now on.

Compile markdown to html

pandoc input.md -s --toc -M document-css=false -o output.html

Generate zip files for luctus.at

To generate the downloadable addons in the files/ folder of luctus.at I use the following bash line:

find . -type d -maxdepth 1 -exec zip -r9 '../zips/{}.zip' '{}' \;

I simply let this run in a fixed interval to always keep the website up to date, hence why I didn't commit the zip files.