]> git.ipfire.org Git - ipfire.org.git/blob - templates/base.html
63cd06312f5cb6783522486917d43d6a331073fb
[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="/">
37 {{ hostname }}
38 </a>
39 </div>
40 <div class="collapse navbar-collapse" id="navbar">
41 {% block menu %}
42 {% module Menu() %}
43 {% end block %}
44 </div>
45 </div>
46 </div>
47 </div>
48
49 {% block container %}
50 {% block header %}{% end block %}
51
52 <div class="container container-body">
53 {% block body %}EMPTY BODY{% end block %}
54 </div>
55 {% end block %}
56
57 {% block footer %}
58 <footer class="footer">
59 <div class="container">
60 <ul class="list-unstyled list-inline pull-right">
61 <a href="http://www.ipfire.org/imprint">{{ _("Imprint") }}</a>
62
63 {% if hostname == "wishlist.ipfire.org" %}
64 <li class="text-muted">&middot;</li>
65 <li>
66 <a href="/terms">{{ _("Terms & Conditions") }}</a>
67 </li>
68 {% end %}
69 </ul>
70
71 <p>
72 &copy; {{ year }} - {{ _("IPFire is free software") }}
73 </p>
74 </div>
75 </footer>
76 {% end block %}
77
78 <script src="{{ static_url("js/jquery.js") }}"></script>
79 <script src="{{ static_url("js/bootstrap.min.js") }}"></script>
80 <script src="{{ static_url("js/site.js") }}"></script>
81 </body>
82 </html>