Last active
August 29, 2015 14:18
-
-
Save adrienkaiser/ee5635bd09f6fa26c6c5 to your computer and use it in GitHub Desktop.
Pelican website
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://blog.john-pfeiffer.com/how-to-set-up-a-pelican-static-blog-site/ | |
http://docs.getpelican.com/ | |
pip install pelican markdown | |
mkdir -p ~/projects/yoursite | |
cd ~/projects/yoursite | |
pelican-quickstart | |
create ./content/article.md | |
create ./content/pages/page.md | |
git clone https://github.com/PurePelicanTheme/pure | |
pelican content -t /path/to/pure-master | |
cd ./output | |
python -m SimpleHTTPServer # -m http.server if you use python3 | |
=> http://localhost:8000/ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment