]> git.sur5r.net Git - i3/i3.github.io/blob - _templates/i3.mako
add favicon
[i3/i3.github.io] / _templates / i3.mako
1 <%!
2
3 %><!DOCTYPE html>
4 <html>
5     <head>
6         <meta http-equiv="content-type" content="text/html; charset=utf-8">
7         <title>i3 - improved tiling wm</title>
8         <link rel="icon" type="image/png" href="/favicon.png">
9         <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen">
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>