]> git.sur5r.net Git - i3/i3.github.io/blob - _templates/i3.mako
042f3c84577321072fe59f83bddb5c99b4c010d6
[i3/i3.github.io] / _templates / i3.mako
1 <%!
2
3 %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
4 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
5 <html>
6     <head>
7         <meta http-equiv="content-type" content="text/html; charset=utf-8">
8         <title>i3 - improved tiling wm</title>
9         <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" charset="utf-8" />
10         <meta name="description" content="i3 is a dynamic tiling window manager with clean, readable and documented code, featuring extended Xinerama support, usage of libxcb instead of xlib and several improvements over wmii" />
11         <meta name="keywords" content="i3, window, manager, tiling, keyboard, wmii, x11, xcb, xinerama, utf8" />
12         <meta name="author" content="i3 developers" />
13     </head>
14     <body>
15         <div id="main">
16             <a href="/"><h1 id="title">i3 - improved tiling WM</h1></a>
17                         <ul id="nav">
18 <%
19         menu = [
20                 [ "/docs", "Docs" ],
21                 [ "/screenshots", "Screens" ],
22                 [ "/contact", "Contact" ],
23                 [ "http://bugs.i3wm.org/", "Bugs" ]
24         ]
25 %>
26 % for link, title in menu:
27                                 <li><a
28 % if self.attr.section == title.lower():
29                                 style="border-bottom: 2px solid #fff"
30 % endif
31                                 href="${link}">${title}</a></li>
32 % endfor
33                         </ul>
34         <br style="clear: both">
35             ${next.body()}
36         </div>
37
38         <div id="footer">
39         © 2009-2011 Michael Stapelberg, <a href="/impress.html">Impressum</a>
40         </div>
41     </body>
42 </html>