Hello Static Site Generator
Posted on Thu 03 August 2017 in 2017
Pelican Powered blog for hyphenOs
Traditionally, if one wanted to host a blog, one would typically be doing something like Wordpress or Blogger. However writing blogs there is extremely inconvenient to say the list. Plus you want to version control your blog and so on. The solution to these problems is typically - the Static File Generators like Jekyll or Pelican. Well, there are a number of those if one thinks that the above choices are rather limited :-).
Advantage of Jekyll
is, it is natively supported by Github Pages thus making it easier to use that if you want to quickly get started with your own GitHub page foo.github.io
. The interested people can read the documentation and get started.
For hyphenOs
blog, I wanted to use pelican FWIW. A small issue with this is - since it's not natively supported by Github Pages, it's a bit of an issue to keep track of your posts and also making sure your generated output is pushed to a respective git submodule
to achieve this. Note: what is described can as well work with gh-pages repo (or I hope so.).
This approach is explained in a couple of blog posts and I am pretty sure there are many more who go into a lot of details. What I am going to describe here is simply how to use output
and theme
directory as git submodule
, so that everything is version controlled.
We basically need three repositories here -
- Content repository - Typically you could create a directory with name blog here. For instance I use directory hyphenos-blog to keep all the content.
- Output repository - This is where your 'site' will be generated. So for this particular blog I use hyphenOs.github.io.
- Theme repository - This is where you will use from a lot of publicly available themes. One can use whichever, but the best choice is to use Get Pelican's own Theme Repository. A very interesting thing about this repository is - a number of themes themselves are available as
git submodules
, making it easier to experiment with different themes.
What we are essentially going to do is Output repository and Theme repository are going to be git submodules
of our Content repository. So the work-flow becomes.
- Initialize Content Repository (see below for more details).
- Add Output repository as
git submodule
(git submodule add https://path-to-your.git output
) - Add Theme repository as
git submodule
(git submodule add https://github.com/getpelican/pelican-themes themes
) - Add Content to your repository Using Markdown or RST or any Pelican supported Syntax.
- Run
make
. (Wow!)
Initializing the Content
Normally, in any Python project, I make use of virtualenv
. This helps in more than one ways especially if you are working with many Python based projects simultaneously. Since Pelican is written in Python and we are going to make use of it to generate our site, as usual, I start with a virtualenv
.
$virtualenv venv
and thenvenv/bin/pip install pelican
. Since I am going to use Markdown, I alsovenv/bin/pip install markdown
. After this- Run
venv/bin/pelican-generator
utility to set blog wide defaults (be sure to create aMakefile
, it's very convenient.). - Next we should edit the
Makefile
to point to correct Python and Pelican executables. ChangePY?=python
toPY?=venv/bin/python
and similarly forPELICAN?=pelican
toPELICAN?=venv/bin/pelican
in the Makefile. - Start writing stuff.
- When done simply do a
make html
and then finally. git push
the 'output' directory where the blogs are generated.
Changing Theme
In order to use the non-standard theme, one downloaded from the Themes repository above, one can simply add a variable like THEME = themes/Flex
to pelicanconf.py
file. To be able to use this - you have to do git submodule update --remote --recursive
inside the themes/Flex
directory, since that itself is a git submodule
. Since I am not interested in all the themes now, I am not doing a git submodule init
here. Instead I am just taking whatever I am interested in.
Conclusion
This is a very easy way of maintaining your blog in a git repo.