This is the website at http://openhealthcare.org.uk
Please do not commit directly to gh pages here - thanks
Broadly works as per their deploy to github instructions.
The OHC Developer box will set you up with everything you need to start editing / adding blog posts.
From the dev vagrant machine,
cd /usr/lib/ohc/openhealthcare.org.uk
rvm use 1.9.3@ohcstatic
rake new_post["Wombles take over the new season at ENO"]
This will create a file in ./source/_posts/yyyy-mm-dd-wombles-take-over.markdown
Go edit that.
You can preview with
jekyll serve -H 0.0.0.0
Go to http://localhost:4000
git add .
git commit -a -m "New post re. Wombles."
git push origin master
rake generate
rake deploy
Begins original octopress documentation:
Octopress is Jekyll blogging at its finest.
- Octopress sports a clean responsive theme written in semantic HTML5, focused on readability and friendliness toward mobile devices.
- Code blogging is easy and beautiful. Embed code (with Solarized styling) in your posts from gists, jsFiddle or from your filesystem.
- Third party integration is simple with built-in support for Pinboard, Delicious, GitHub Repositories, Disqus Comments and Google Analytics.
- It's easy to use. A collection of rake tasks simplifies development and makes deploying a cinch.
- Ships with great plug-ins some original and others from the Jekyll community — tested and improved.
Note: Octopress requires a minimum Ruby version of 1.9.3-p0
.
Check out Octopress.org for guides and documentation.
It should all apply to our current stable version (found in the master
branch). If this is not the case, please submit a
fix to our docs repo.