A custom theme I made for Pelican static site generator using the Jinja templating engine, CSS and JavaScript.
Clone this repository into the main folder of your pelican site, the structure should look something like this:
└── yourproject
├── Makefile
├── content
│ └── (pages)
├── pelican-theme
│ ├── static
│ │ ├── css
│ │ │ └── (css files)
│ │ └── js
│ │ └── (js files)
│ └── templates
│ └── (custom templates)
├── output
│ └── (output files)
├── pelicanconf.py
├── publishconf.py.txt
└── tasks.py
Edit your Pelican settings file (pelicanconf.py
) to look for the theme:
THEME = 'pelican-theme'
Save the changes to your settings file and then regenerate your site:
make html