From: Michael Stapelberg Date: Sun, 17 Oct 2010 16:28:41 +0000 (+0200) Subject: add blog/ (jekyll folder structure for http://i3.zekjur.net/blog/) X-Git-Tag: 3.e-bf2~13 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=54fcc5fc3e4fbf5d9a8e0f8cf033f995f4f8e1af;p=i3%2Fi3 add blog/ (jekyll folder structure for http://i3.zekjur.net/blog/) --- diff --git a/blog/_config.yml b/blog/_config.yml new file mode 100644 index 00000000..6c227bc8 --- /dev/null +++ b/blog/_config.yml @@ -0,0 +1 @@ +permalink: /blog/:year/:month/:day/:title diff --git a/blog/_layouts/default.html b/blog/_layouts/default.html new file mode 100644 index 00000000..0215b427 --- /dev/null +++ b/blog/_layouts/default.html @@ -0,0 +1,88 @@ + + + + + + + + + +i3: what’s new? + + + + +

i3

+

improved tiling wm

+ +
+
+ + + +
+ +{{ content }} + + + diff --git a/blog/_layouts/post.html b/blog/_layouts/post.html new file mode 100644 index 00000000..b25ab298 --- /dev/null +++ b/blog/_layouts/post.html @@ -0,0 +1,11 @@ +--- +layout: default +--- + +

{{ page.date | date:"%Y-%m-%d" }} {{ page.title }}

+ +{{ content }} + +
+ +← Back to the blog diff --git a/blog/_posts/2010-10-07-faster-workspace-switching.markdown b/blog/_posts/2010-10-07-faster-workspace-switching.markdown new file mode 100644 index 00000000..0a76e95b --- /dev/null +++ b/blog/_posts/2010-10-07-faster-workspace-switching.markdown @@ -0,0 +1,9 @@ +--- +layout: post +--- + +I just merged a patch from Niklas to make workspace switching cause less flickering: +[commit message/changes](http://code.stapelberg.de/git/i3/commit/?h=next&id=8279eb3a4e9d6a29550d0395ce751061271616b8) + +Update your version of i3 to the latest git version ("next" branch) to enjoy +the changes. diff --git a/blog/index.html b/blog/index.html new file mode 100644 index 00000000..93f553f0 --- /dev/null +++ b/blog/index.html @@ -0,0 +1,12 @@ +--- +layout: default +--- + +

blog: What’s new?

+ +{% for post in site.posts %} +
+

{{ post.date | date:"%Y-%m-%d" }} {{ post.title }}

+ {{ post.content }} +
+{% endfor %}