Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 885 Bytes

README.md

File metadata and controls

47 lines (33 loc) · 885 Bytes

nicokosi's blog ✍️

This is my blog content, in markdown format, and its configuration for static site generation.

Install static site generator

On Mac OS, with Homebrew:

brew install python
pip install pelican
pip install markdown
  • Install Pelican theme:
git clone git@github.com:nicokosi/pelican-clean-blog.git

If needed, all themes can be installed this way:

git clone \
    --recursive https://github.com/getpelican/pelican-themes \
    pelican-themes

Generate local site

Serve content on http://localhost:8000/:

pelican content \
    --listen \
    --extra-settings RELATIVE_URLS=False \
    --autoreload

Generate content (before publishing)

pelican content