From 54fcc5fc3e4fbf5d9a8e0f8cf033f995f4f8e1af Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sun, 17 Oct 2010 18:28:41 +0200 Subject: [PATCH] add blog/ (jekyll folder structure for http://i3.zekjur.net/blog/) --- blog/_config.yml | 1 + blog/_layouts/default.html | 88 +++++++++++++++++++ blog/_layouts/post.html | 11 +++ ...-10-07-faster-workspace-switching.markdown | 9 ++ blog/index.html | 12 +++ 5 files changed, 121 insertions(+) create mode 100644 blog/_config.yml create mode 100644 blog/_layouts/default.html create mode 100644 blog/_layouts/post.html create mode 100644 blog/_posts/2010-10-07-faster-workspace-switching.markdown create mode 100644 blog/index.html 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 %} -- 2.39.5