A functional, clean, responsive Pelican theme
  • HTML 83.1%
  • CSS 13.5%
  • Python 3.4%
Find a file
2020-08-21 10:24:41 +03:00
content IMAGE OPTIMIZATION TO THE RESCUE 2017-11-24 08:49:02 +03:00
plugins Rename bootstrapify -> pelican-bootstrapify submodule 2016-12-01 13:42:10 +03:00
themes Update pelican-alchemy, track latest changes 2017-11-24 08:44:17 +03:00
.gitignore Automatically manage Python virtual environment 2020-08-21 10:24:41 +03:00
.gitmodules Revert links to 👉 to @nairobilug 2016-12-02 23:12:53 +03:00
develop_server.sh Initial commit 2016-11-29 15:25:03 +03:00
fabfile.py Initial commit 2016-11-29 15:25:03 +03:00
Makefile Automatically manage Python virtual environment 2020-08-21 10:24:41 +03:00
pelicanconf.py Update demo content 2017-04-08 23:01:07 +03:00
publishconf.py Revert links to 👉 to @nairobilug 2016-12-02 23:12:53 +03:00
README.md Add setup instructions 2017-01-05 18:20:26 +03:00
requirements.txt Add python dependencies 2017-01-05 18:19:47 +03:00

pelican-alchemy

pelican-alchemy demo website!

Fork / Clone the repo

If you haven't already, clone this repo (or your version of it), and:

$ git submodule init
$ git submodule update

Install Pelican & friends

Use pip to install the list of dependencies (including Pelican) into your virtual environment:

$ pip install -r requirements.txt

Generate the website

Now that the dependencies exists, we can build:

$ make html

This takes the Markdown files from the content/ directory and generates static HTML pages inside the output/ directory.

Preview the website

You can serve the generated site so it can be previewed in your browser:

$ make serve