]> git.ipfire.org Git - ipfire.org.git/blame - www/templates/base.html
fireinfo: Some design fixes for ARM.
[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") }}" />
54b8df1a 19 <link rel="stylesheet" type="text/css" href="{{ static_url("fancybox/jquery.fancybox-1.3.4.css") }}" />
81675874 20 <script type="text/javascript" src="{{ static_url("js/jquery.js") }}"></script>
21 <script type="text/javascript" src="{{ static_url("js/jquery-ui.js") }}"></script>
54b8df1a 22 <script type="text/javascript" src="{{ static_url("fancybox/jquery.fancybox-1.3.4.pack.js") }}"></script>
81675874 23 <!--[if lt IE 7]>
24 <link rel="stylesheet" type="text/css" href="{{ static_url("css/ie6.css") }}" />
25 <script src="{{ static_url("js/correctpng.js") }}" type="text/javascript"></script>
26 <![endif]-->
940227cb 27
de683d7c
MT
28 {% if rss_url %}
29 <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ rss_url }}" />
30 {% end %}
81675874 31 </head>
32 <body>
33 <div id="header">
34 <div id="header_inner" class="fixed">
35 <div id="logo">
940227cb 36 <a href="http://www.ipfire.org/">
81675874 37 <img src="{{ static_url("images/tux_menu_99x100.png") }}" class="symbol" alt="IPFire" />
38 </a>
39 </div>
940227cb 40 <div id="header_menu">
81675874 41 {% block menu %}
42 {{ modules.Menu() }}
43 {% end block %}
81675874 44 </div>
940227cb
MT
45 <div id="header_hostname">
46 <h1>{{ hostname }}</h1>
81675874 47 </div>
940227cb
MT
48 <div id="header_slogan">
49 <h2>{{ _("An Open Source Firewall Solution") }}</h2>
81675874 50 </div>
81675874 51 </div>
52 </div>
53 <div id="main">
54 <div id="main_inner" class="fixed">
940227cb 55 <table id="main_frame">
81675874 56 <tr>
57 <td id="sh-tl"></td>
58 <td id="sh-top"></td>
59 <td id="sh-tr"></td>
60 </tr>
61 <tr>
62 <td id="sh-lft"></td>
63 <td id="no-sh">
940227cb 64 {% block columns %}{% end block %}
81675874 65 </td>
66 <td id="sh-rgt"></td>
67 </tr>
81675874 68 <tr>
69 <td id="sh-lft"></td>
70 <td id="footer" class="fixed2">
940227cb 71 Copyright &copy; {{ year }} IPFire.org. {{ _("All rights reserved.") }} <a href="http://www.ipfire.org/imprint">{{ _("imprint") }}</a>
81675874 72 </td>
73 <td id="sh-rgt"></td>
74 </tr>
81675874 75 <tr>
76 <td id="sh-bl"></td>
77 <td id="sh-btn"></td>
78 <td id="sh-br"></td>
79 </tr>
80 </table>
81 </div>
82 </div>
83 {% block javascript %}{% end block %}
84 </body>
85</html>