]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/base.html
Initial checkin.
[people/shoehn/ipfire.org.git] / www / templates / base.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
4 <head>
5 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
6 <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
7 <title>{% block title %}{{ title }}{% end block %}</title>
8 <meta name="keywords" content="Linux, Firewall, IPFire, Security" />
9 <meta name="description" content="" />
10 <meta name="verify-v1" content="2LEf3W8naILGWVy2dhedSVEHPXTpp2xFNVsHXZMH1JI=" />
11 <link rel="stylesheet" type="text/css" href="{{ static_url("css/style.css") }}" />
12 <script type="text/javascript" src="{{ static_url("js/jquery.js") }}"></script>
13 <script type="text/javascript" src="{{ static_url("js/jquery-ui.js") }}"></script>
14 <link rel="alternate" type="application/rss+xml" title="RSS" href="http://www.ipfire.org/{{ lang }}/news.rss" />
15 <!--[if lt IE 7]>
16 <link rel="stylesheet" type="text/css" href="{{ static_url("css/ie6.css") }}" />
17 <script src="{{ static_url("js/correctpng.js") }}" type="text/javascript"></script>
18 <![endif]-->
19 </head>
20 <body>
21 <div id="header">
22 <div id="header_inner" class="fixed">
23 <div id="logo">
24 <a href="{{ link("") }}">
25 <img src="{{ static_url("images/tux_menu_99x100.png") }}" class="symbol" alt="IPFire" />
26 </a>
27 </div>
28 <div id="line1">
29 {% block menu %}
30 {{ modules.Menu() }}
31 {% end block %}
32 <div id="lang">
33 {% block languages %}
34 {% for lng in langs %}
35 <a href="{{ lang_link(lng) }}"><img src="{{ static_url("images/%s.gif" % lng) }}" alt="{{ lng }}" /></a>
36 {% end %}
37 {% end block %}
38 </div>
39 </div>
40 <div id="line2">
41 <h1>{{ server }}</h1>
42 </div>
43 <div id="line3">
44 <h2>{{ _("Security gone easy!") }}</h2>
45 </div>
46
47 </div>
48 </div>
49 <div id="main">
50 <div id="main_inner" class="fixed">
51 <table>
52 <tr>
53 <td id="sh-tl"></td>
54 <td id="sh-top"></td>
55 <td id="sh-tr"></td>
56 </tr>
57 <tr>
58 <td id="sh-lft"></td>
59 <td id="no-sh">
60 <div id="primaryContent_2columns">
61 <div id="columnA_2columns">
62 {% block content %}
63 {% end block %}
64 <br class="clear" />
65 </div>
66 </div>
67 <div id="secondaryContent_2columns">
68 <div id="columnC_2columns">
69 {% block sidebar %}
70 {{ modules.SidebarBanner(banner) }}
71 {% end block %}
72 <br class="clear" />
73 </div>
74 </div>
75 </td>
76 <td id="sh-rgt"></td>
77 </tr>
78
79 <tr>
80 <td id="sh-lft"></td>
81 <td id="footer" class="fixed2">
82 Copyright &copy; {{ year }} IPFire.org. All rights reserved. <a href="imprint">{{ _("imprint") }}</a>
83 </td>
84 <td id="sh-rgt"></td>
85 </tr>
86
87 <tr>
88 <td id="sh-bl"></td>
89 <td id="sh-btn"></td>
90 <td id="sh-br"></td>
91 </tr>
92 </table>
93 </div>
94 </div>
95 {% block javascript %}{% end block %}
96 </body>
97 </html>