]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/base.html
remove bt theme css
[people/shoehn/ipfire.org.git] / 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 href="http://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet" type="text/css">
18 <meta name="viewport" content="width=device-width, initial-scale=1.0">
19
20 {% if rss_url %}
21 <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ rss_url }}" />
22 {% end %}
23 </head>
24
25 <body data-spy="scroll" data-target=".sidebar">
26 <div class="navbar navbar-fixed-top navbar-inverse" role="navigation">
27 <div>
28 <div class="container">
29 <div class="navbar-header">
30 <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
31 <span class="sr-only">Toggle navigation</span>
32 <span class="icon-bar"></span>
33 <span class="icon-bar"></span>
34 <span class="icon-bar"></span>
35 </button>
36 <a class="navbar-brand" href="/">{{ hostname }}</a>
37 </div>
38 <div class="collapse navbar-collapse" id="navbar">
39 {% block menu %}
40 {% module Menu() %}
41 {% end block %}
42 </div>
43 </div>
44 </div>
45 </div>
46
47 {% block container %}
48 {% block header %}{% end block %}
49
50 <div class="container container-body">
51 {% block body %}EMPTY BODY{% end block %}
52 </div>
53 {% end block %}
54
55 {% block footer %}
56 <footer class="footer navbar-default">
57 <div class="container">
58 <div class="pull-right">
59 <a href="https://www.facebook.com/IPFire.org"><img src="{{ static_url("images/icons/social/facebook.png") }}" alt="Facebook"></a>
60 <a href="https://twitter.com/ipfire"><img src="{{ static_url("images/icons/social/twitter.png") }}" alt="Twitter"></a>
61 <a href="/news.rss"><img src="{{ static_url("images/icons/social/rss.png") }}" alt="RSS"></a>
62 </div>
63
64 <p>
65 &copy; {{ year }} - {{ _("IPFire is free software") }}
66 </p>
67
68 <ul class="footer-links">
69 {% if hostname in ("www.ipfire.org", "dev.ipfire.org") %}
70 <li>
71 <a href="/press">{{ _("Press") }}</a>
72 </li>
73 <li class="text-muted">&middot;</li>
74 {% end %}
75 <a href="http://www.ipfire.org/imprint">{{ _("Imprint") }}</a>
76
77 {% if hostname == "wishlist.ipfire.org" %}
78 <li class="text-muted">&middot;</li>
79 <li>
80 <a href="/terms">{{ _("Terms & Conditions") }}</a>
81 </li>
82 {% end %}
83
84 {% if not hostname == "planet.ipfire.org" %}
85 {% for l in ("en", "de") %}
86 {% if not l == lang %}
87 <li class="text-muted">&middot;</li>
88 <li>
89 <a href="?locale={{ l }}">
90 <img src="{{ static_url("images/flags/%s.png" % l) }}" alt="{{ l }}">
91 </a>
92 </li>
93 {% end %}
94 {% end %}
95 {% end %}
96 </ul>
97 </div>
98 </footer>
99 {% end block %}
100
101 <script src="{{ static_url("js/jquery.js") }}"></script>
102 <script src="{{ static_url("js/bootstrap.min.js") }}"></script>
103 <script src="{{ static_url("js/site.js") }}"></script>
104 </body>
105 </html>