]> git.sur5r.net Git - i3/i3/commitdiff
add blog/ (jekyll folder structure for http://i3.zekjur.net/blog/)
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 17 Oct 2010 16:28:41 +0000 (18:28 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 17 Oct 2010 16:43:19 +0000 (18:43 +0200)
blog/_config.yml [new file with mode: 0644]
blog/_layouts/default.html [new file with mode: 0644]
blog/_layouts/post.html [new file with mode: 0644]
blog/_posts/2010-10-07-faster-workspace-switching.markdown [new file with mode: 0644]
blog/index.html [new file with mode: 0644]

diff --git a/blog/_config.yml b/blog/_config.yml
new file mode 100644 (file)
index 0000000..6c227bc
--- /dev/null
@@ -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 (file)
index 0000000..0215b42
--- /dev/null
@@ -0,0 +1,88 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="utf8">
+<link rel="icon" type="image/png" href="/favicon.png">
+<meta name="description" content="i3 is a dynamic tiling window manager with clean, readable and documented code, featuring extended XRandR support, usage of libxcb instead of xlib and several improvements over wmii">
+<meta name="keywords" content="i3, window, manager, tiling, keyboard, wmii, x11, xcb, xinerama, utf8">
+<meta name="author" content="i3 developers">
+
+<title>i3: what’s new?</title>
+<style type="text/css">
+body {
+       text-align: justify;
+       max-width: 900px;
+       background-color: #1e1e1e;
+       color: #c0c0c0;
+}
+
+ol li {
+       margin-bottom: 10px;
+}
+
+#menu {
+       margin-left: -15px;
+       overflow: hidden;
+       list-style-type: none;
+}
+
+#menu li {
+       margin-left: 30px;
+       margin-right: 30px;
+       float: left;
+}
+
+a {
+        color: #c0c0c0;
+       text-decoration: underline;
+}
+
+.post .date {
+       font-size: 80%;
+       color: #a0a0a0;
+       margin-right: 1em;
+}
+
+.post h2 a {
+       text-decoration: none;
+}
+</style>
+</head>
+<body>
+<img width="131" height="125" src="http://i3.zekjur.net/logo.png" style="margin-right: 15px" alt="logo" id="logo" align="left">
+<h1 style="color: red; font-family: georgia; font-size: 3em;margin-bottom: 0;">i3</h1>
+<h1 style="font-family: georgia; font-size: 2em;margin-bottom: 0;">improved tiling wm</h1>
+
+<br style="height: 0; clear: both;">
+<hr style="border: 1px solid black; clear: both; margin-top: 5px;">
+
+<ul id="menu">
+  <li>
+    <a href="/">Goals</a>
+  </li>
+  <li>
+    <a href="/docs/">Docs</a>
+  </li>
+  <li>
+    <a href="/downloads/">Downloads</a>
+  </li>
+  <li>
+    <a href="/screenshots/">Screens</a>
+  </li>
+  <li>
+    <a href="/bugs">Bugtracker</a>
+  </li>
+  <li>
+    <a href="/contact/">Contact</a>
+  </li>
+  <li>
+    <a href="/impress.html">Impressum</a>
+  </li>
+</ul>
+
+<hr style="border: 1px solid black; clear: both; margin-top: 15px;">
+
+{{ content }}
+
+</body>
+</html>
diff --git a/blog/_layouts/post.html b/blog/_layouts/post.html
new file mode 100644 (file)
index 0000000..b25ab29
--- /dev/null
@@ -0,0 +1,11 @@
+---
+layout: default
+---
+
+<h2><span class="date">{{ page.date | date:"%Y-%m-%d" }}</span> {{ page.title }}</h2>
+
+{{ content }}
+
+<hr style="border: 1px solid black; clear: both; margin-top: 15px;">
+
+<a href="/blog/">← Back to the blog</a>
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 (file)
index 0000000..0a76e95
--- /dev/null
@@ -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 (file)
index 0000000..93f553f
--- /dev/null
@@ -0,0 +1,12 @@
+---
+layout: default
+---
+
+<h1>blog: What’s new?</h1>
+
+{% for post in site.posts %}
+  <div class="post">
+  <h2><span class="date">{{ post.date | date:"%Y-%m-%d" }}</span> <a href="{{ post.url }}">{{ post.title }}</a></h2>
+  {{ post.content }}
+  </div>
+{% endfor %}