peterdesmet / spoonbill

Theme for a Pelican powered blog
Other
3 stars 0 forks source link

Get theme up on Pelican themes repo #22

Open hlapp opened 10 years ago

hlapp commented 10 years ago

Really nice theme. It deserves more exposure. I notice that it isn't up on the getpelican/pelican-themes repo - it definitely should be!

peterdesmet commented 10 years ago

Hi Hilmar,

Didn't know you are a Pelican user! Thanks for the suggestion, will do so once I find the time.

Peter

hlapp commented 10 years ago

Didn't know you are a Pelican user!

I became one on Jan 1, 2014 :smile:

peterdesmet commented 10 years ago

Nice! I'm very happy I made the switch almost a year ago. I noticed you keep your content in it's own branch: how do you publish? Publish to local directory > Switch to branch > Copy?

hlapp commented 10 years ago

I noticed you keep your content in it's own branch: how do you publish?

My output directory is a separate repo clone using the master branch. I run roughly the following sequence of commands:

$ make stopserver  # stop the local HTTP server so it doesn't complain about publish-only stuff
$ make publish
$ cd output
$ git status  # if I feel I want to see what's changed
$ git add --all
$ git commit -m "Some message about a new post going up"
$ git push

Eventually I'll put this under the make github target, but it's infrequent enough that for now I prefer to type it out each time and be in control of what's happening.