/celtec.github.io

:checkered_flag: Celtec static site :red_car: :truck: :blue_car: :articulated_lorry:

Primary LanguagePython

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