summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2012-04-26 14:06:27 +0200
committerChristoph Helma <helma@in-silico.ch>2012-04-26 14:06:27 +0200
commit58258d7174f853cab7f8d5d3c99a179036fc546c (patch)
tree4a017c6510cc8faf4b415d9581aea618219da7e3
parent50a5cdb568099a46e1917906907494b6d0c88d62 (diff)
post added
-rw-r--r--_layouts/default.html4
-rw-r--r--_layouts/page.html2
-rw-r--r--_layouts/post.html2
-rw-r--r--_posts/2012-04-26-opentox-blogging.md40
4 files changed, 44 insertions, 4 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index e3294c7..c175a7b 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -1,6 +1,6 @@
---
theme :
- name : the-minimum
+ name : tom
---
{% include JB/setup %}
-{% include themes/the-minimum/default.html %}
+{% include themes/tom/default.html %}
diff --git a/_layouts/page.html b/_layouts/page.html
index 6b2de81..4a80f5e 100644
--- a/_layouts/page.html
+++ b/_layouts/page.html
@@ -2,4 +2,4 @@
layout: default
---
{% include JB/setup %}
-{% include themes/the-minimum/page.html %}
+{% include themes/tom/page.html %}
diff --git a/_layouts/post.html b/_layouts/post.html
index 9ea076e..47080b7 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -2,4 +2,4 @@
layout: default
---
{% include JB/setup %}
-{% include themes/the-minimum/post.html %}
+{% include themes/tom/post.html %}
diff --git a/_posts/2012-04-26-opentox-blogging.md b/_posts/2012-04-26-opentox-blogging.md
new file mode 100644
index 0000000..b63e905
--- /dev/null
+++ b/_posts/2012-04-26-opentox-blogging.md
@@ -0,0 +1,40 @@
+---
+layout: post
+title: "Blogging at opentox.github.com"
+description: ""
+category: General
+tags: []
+---
+{% include JB/setup %}
+
+For OpenTox GitHub organization members only
+
+Install Jekyll
+--------------
+ gem install jekyll
+
+Get opentox.github.com
+----------------------
+ git clone git@github.com:opentox/opentox.github.com.git
+
+Preview
+-------
+ cd opentox.github.com
+ jekyll --server
+view at http://localhost:4000
+
+Blog
+----
+ rake post title="foo"
+edit blog
+
+Categories and tags
+-------------------
+
+Categories should match github projects (e.g. opentox-client, algorithm, ...) or "general" for topics that apply to more than one project. Use tags to refer to other concepts (e.g REST, "support vector machines", ...).
+
+Publish
+-------
+ git add .
+ git commit -m "Add new content"
+ git push