]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - www/templates/base.html
Import of new website.
[people/shoehn/ipfire.org.git] / www / templates / base.html
CommitLineData
940227cb
MT
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2<html>
81675874 3 <head>
940227cb
MT
4 <title>{{ hostname }} - {% block title %}{% end block %}</title>
5
6 <!-- Your locale is {{ locale.code }} -->
7
8 <!-- Some meta information -->
81675874 9 <meta name="keywords" content="Linux, Firewall, IPFire, Security" />
940227cb
MT
10 <meta name="description" content="{{ _("IPFire is a free firewall distribution based on Linux.") }}" />
11
12 <!-- Some browser specific stuff -->
81675874 13 <meta name="verify-v1" content="2LEf3W8naILGWVy2dhedSVEHPXTpp2xFNVsHXZMH1JI=" />
940227cb
MT
14 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
15 <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
16
17 <!-- Style information and javascript -->
81675874 18 <link rel="stylesheet" type="text/css" href="{{ static_url("css/style.css") }}" />
19 <script type="text/javascript" src="{{ static_url("js/jquery.js") }}"></script>
20 <script type="text/javascript" src="{{ static_url("js/jquery-ui.js") }}"></script>
81675874 21 <!--[if lt IE 7]>
22 <link rel="stylesheet" type="text/css" href="{{ static_url("css/ie6.css") }}" />
23 <script src="{{ static_url("js/correctpng.js") }}" type="text/javascript"></script>
24 <![endif]-->
940227cb
MT
25
26 <!-- RSS -->
27 <link rel="alternate" type="application/rss+xml" title="RSS" href="http://www.ipfire.org/{{ lang }}/news.rss" />
81675874 28 </head>
29 <body>
30 <div id="header">
31 <div id="header_inner" class="fixed">
32 <div id="logo">
940227cb 33 <a href="http://www.ipfire.org/">
81675874 34 <img src="{{ static_url("images/tux_menu_99x100.png") }}" class="symbol" alt="IPFire" />
35 </a>
36 </div>
940227cb 37 <div id="header_menu">
81675874 38 {% block menu %}
39 {{ modules.Menu() }}
40 {% end block %}
81675874 41 </div>
940227cb
MT
42 <div id="header_hostname">
43 <h1>{{ hostname }}</h1>
81675874 44 </div>
940227cb
MT
45 <div id="header_slogan">
46 <h2>{{ _("An Open Source Firewall Solution") }}</h2>
81675874 47 </div>
81675874 48 </div>
49 </div>
50 <div id="main">
51 <div id="main_inner" class="fixed">
940227cb 52 <table id="main_frame">
81675874 53 <tr>
54 <td id="sh-tl"></td>
55 <td id="sh-top"></td>
56 <td id="sh-tr"></td>
57 </tr>
58 <tr>
59 <td id="sh-lft"></td>
60 <td id="no-sh">
940227cb 61 {% block columns %}{% end block %}
81675874 62 </td>
63 <td id="sh-rgt"></td>
64 </tr>
81675874 65 <tr>
66 <td id="sh-lft"></td>
67 <td id="footer" class="fixed2">
940227cb 68 Copyright &copy; {{ year }} IPFire.org. {{ _("All rights reserved.") }} <a href="http://www.ipfire.org/imprint">{{ _("imprint") }}</a>
81675874 69 </td>
70 <td id="sh-rgt"></td>
71 </tr>
81675874 72 <tr>
73 <td id="sh-bl"></td>
74 <td id="sh-btn"></td>
75 <td id="sh-br"></td>
76 </tr>
77 </table>
78 </div>
79 </div>
80 {% block javascript %}{% end block %}
81 </body>
82</html>