Content for undefinedbehavior.de
Go to file
2023-05-25 18:57:50 +02:00
content add commit-vandalism.md 2023-05-25 18:57:50 +02:00
.gitignore initial commit 2022-08-28 18:56:24 +02:00
filters.py initial commit 2022-08-28 18:56:24 +02:00
pelicanconf.py remove /pages prefix from pages, add lost+found page, minor content changes 2023-04-25 11:39:23 +02:00
publishconf.py fix output_path in publishconf.py 2022-08-28 19:55:13 +02:00
README.md initial commit 2022-08-28 18:56:24 +02:00

undefinedbehavior-website

Content for undefinedbehavior.de.

Deployment

Clone the repository and generate the website using pelican content -s publishconf.py. Refer to the pelican documentation for details on how to configure pelican.

Filters

In order to use sidenotes and lightboxes, add filters.py as custom jinja filters to your pelicanconf.py:

from sys import path
from os import curdir
path.append(curdir)
from filters import add_lightboxes, add_sidenotes

JINJA_FILTERS = {'add_lightboxes': add_lightboxes,
                 'add_sidenotes': add_sidenotes}

License

Most content on this site is licensed unter the CC-BY-NC license.