pelicanconf.py - General Configuration

pelicanconf.py is the central configuration instance where I configure Pelican to build my web site.

Plugins

#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals

PLUGIN_PATHS = ['plugins']
PLUGINS = ['page_relations',]

The page_relation plugin is inspired by the page_hierarchy.py plugin. It does change slug metadata though, to manage the hierarchies. Additionally it manages sibbling relationship which can be used for forward/backward navigation.

 

Copyright © 2016 Uwe Ritzmann - Created with Pelican, Python and Skeleton.