Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 926 Bytes

README.md

File metadata and controls

52 lines (36 loc) · 926 Bytes

Celtec Github Site

Jobs website generated with Python Pelican with Nest theme.

Setup

pip install pelican --user
pip install Markdown --user
pip install ghp-import --user

For more details, check Pelican docs

Install themes

mkdir -p output
git clone git@github.com:celtec/celtec-custom-nest.git /path/for/celtec/custom/nest/theme
pelican-themes -s /path/for/celtec/custom/nest/theme

This will symlink our custom theme with pelican.

Preview

./develop_server.sh start

Then access localhost:8000

To stop server just run:

./develop_server.sh stop

Publishing

pelican content/ -o output/ -s publishconf.py
ghp-import -b master output/
git push origin master

Or just run:

./publish