]> git.ipfire.org Git - ipfire.org.git/blob - www/templates/base.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / www / templates / base.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <title>{{ hostname }} - {% block title %}{{ _("No title given") }}{% end block %}</title>
5 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
6 <meta name="author" content="IPFire.org - IPFire Development Team" />
7 <meta name="verify-v1" content="2LEf3W8naILGWVy2dhedSVEHPXTpp2xFNVsHXZMH1JI=" />
8
9 <!-- Your locale is {{ locale.code }} -->
10
11 <meta name="keywords" content="Linux, Firewall, IPFire, Security, IPCop, Open Source, Free, ARM, VPN, Proxy, IDS, IPS" />
12 <meta name="description" content="{{ _("IPFire is a free firewall distribution based on Linux.") }}" />
13
14 <!-- styling stuff -->
15 <link rel="stylesheet" type="text/css" href="{{ static_url("css/bootstrap.min.css") }}" />
16 <link rel="stylesheet" type="text/css" href="{{ static_url("css/style.css") }}" />
17 <link rel="stylesheet" type="text/css" href="{{ static_url("css/bootstrap-responsive.min.css") }}" />
18 <link href="http://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet" type="text/css">
19 <meta name="viewport" content="width=device-width, initial-scale=1.0">
20
21 {% if rss_url %}
22 <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ rss_url }}" />
23 {% end %}
24 </head>
25
26 <body>
27 <div class="navbar navbar-fixed-top">
28 <div class="navbar-inner">
29 <div class="container">
30 <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
31 <span class="icon-bar"></span>
32 <span class="icon-bar"></span>
33 <span class="icon-bar"></span>
34 </a>
35 <a class="brand" href="/">{{ hostname }}</a>
36 <div class="nav-collapse">
37 {% block menu %}
38 {{ modules.Menu() }}
39 {% end block %}
40 </div>
41 </div>
42 </div>
43 </div>
44
45 {% block container %}
46 <div class="container container-body">
47 {% block body %}EMPTY BODY{% end block %}
48
49 <footer class="footer hidden-phone">
50 <hr>
51
52 {% if not hostname == "planet.ipfire.org" %}
53 <div class="pull-right">
54 <p>
55 {% for l in ("en", "de") %}
56 {% if not l == lang %}
57 <a href="?locale={{ l }}">
58 <img src="{{ static_url("images/flags/%s.png" % l) }}" alt="{{ l }}">
59 </a>
60 {% end %}
61 {% end %}
62 </p>
63 </div>
64 {% end %}
65
66 <p>
67 &copy; {{ year }} - <a href="http://www.ipfire.org/">IPFire.org</a> -
68 {% if hostname in ("www.ipfire.org", "dev.ipfire.org") %}
69 <a href="/press">{{ _("Press") }}</a> -
70 {% end %}
71 <a href="http://www.ipfire.org/imprint">{{ _("imprint") }}</a>
72
73 {% if hostname == "wishlist.ipfire.org" %}
74 - <a href="/terms">{{ _("Terms & Conditions") }}</a>
75 {% end %}
76 </p>
77 </footer>
78 </div>
79 {% end block %}
80
81 <script src="{{ static_url("js/jquery.js") }}"></script>
82 <script src="{{ static_url("js/bootstrap.min.js") }}"></script>
83 <script src="{{ static_url("js/site.js") }}"></script>
84 </body>
85 </html>