This is a Pelican port of the popular Architect Jekyll theme for GitHub Pages. You can preview the theme to see what it looks like, or even use it today.
To use the Architect theme:
- If you don't have
webassets
andcssmin
installed, you'll need to install them. You can do so by running:pip install -r requirements.txt
- Copy the
themes\architect
folder to your own Pelican blog. - Copy the variables from the
pelicanconf.py
folder. The following lines are particularly important:# Set theme THEME = 'themes/architect' # Load plugins PLUGIN_PATHS = ['plugins'] PLUGINS = ['assets'] # Let the assets plugin deal with css IGNORE_FILES = ['*.css']
If you'd like to preview the theme locally (for example, in the process of proposing a change):
- Clone down the theme's repository (git clone https://github.com/MattWThomas/architect-pelican.git)
- cd into the theme's directory
- Run the following to install necessary dependencies:
pip install -r requirements.txt
- Run
pelican content
to generate the files. - Run
pelican --listen ./output
to start the preview server - Visit localhost:8000 in your browser to preview the theme