Testing this new blog
Using ghost.org to create it. Github Pages to host it.
Deployment help from https://zzamboni.github.io/test-ghost-blog/hosting-a-ghost-blog-in-github-the-easier-way/index.html
Let's try some code highlighting. This is the first version of a simple script to create a static version from the localhost.
#!/bin/bash
ghost start
wget -q -r -nH -P static -E -T 2 -np -k http://localhost:2368/
echo "Done. See ./static directory to push to github."