|
72
|
1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
|
|
2 |
"http://www.w3.org/TR/html4/strict.dtd"> |
|
|
3 |
<html xmlns="http://www.w3.org/1999/xhtml" |
|
|
4 |
xmlns:py="http://genshi.edgewall.org/" py:strip=""> |
|
|
5 |
|
|
|
6 |
<py:match path="head" once="true"> |
|
|
7 |
<head py:attrs="select('@*')"> |
|
|
8 |
<title py:with="title = list(select('title/text()'))">Iro <py:if test="title">· ${title}</py:if></title> |
|
|
9 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|
|
10 |
<meta charset="utf-8" /> |
|
|
11 |
<meta name="description" content="" /> |
|
|
12 |
<meta name="keywords" content="" /> |
|
|
13 |
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.png" /> |
|
|
14 |
<link rel="stylesheet" href="css/reset.css" type="text/css" media="screen" /> |
|
|
15 |
<link rel="stylesheet" href="css/960.css" type="text/css" media="screen" /> |
|
|
16 |
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" /> |
|
|
17 |
<!--[if IE]><link rel="stylesheet" href="css/style-ie.css" type="text/css" media="screen" /><![endif] --> |
|
|
18 |
${select('*[local-name()!="title"]')} |
|
|
19 |
</head> |
|
|
20 |
</py:match> |
|
|
21 |
|
|
|
22 |
<py:match path="body" once="true"> |
|
|
23 |
<body py:attrs="select('@*')"> |
|
|
24 |
<div id="head-container"> |
|
|
25 |
<div id="head"> |
|
|
26 |
<h1 id="logo"><a href="index.html" class="logo" title="Netzguerilla"><span>Netzguerilla</span></a></h1> |
|
|
27 |
<ul id="menu"> |
|
|
28 |
<li py:for="site in sites"><a href="${site.link}" class="menu" py:attrs="active(site)">${site.title}</a></li> |
|
|
29 |
</ul> |
|
|
30 |
</div> |
|
|
31 |
</div> |
|
|
32 |
|
|
|
33 |
|
|
|
34 |
<div id="content-container"> |
|
|
35 |
<div id="content" class="container_12"> |
|
|
36 |
<div id="main" class="grid_9"> |
|
|
37 |
<h2 py:with="title = list(select('title/text()'))"><py:if test="title">${title}</py:if></h2> |
|
|
38 |
${select('*[local-name()!="title"]')} |
|
|
39 |
</div> |
|
|
40 |
<div class="clear"></div> |
|
|
41 |
</div> |
|
|
42 |
</div> |
|
|
43 |
|
|
|
44 |
<div id="foot-container"> |
|
|
45 |
<div id="foot"> |
|
|
46 |
<p>© 2010-2011 <a href="impressum.html">Netzguerilla.net</a>.</p> |
|
|
47 |
</div> |
|
|
48 |
</div> |
|
|
49 |
|
|
|
50 |
</body> |
|
|
51 |
</py:match> |
|
|
52 |
</html> |