]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/base.html
080ba0ca1b6d5b2defbc25d8349c860264d3657a
[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/font-awesome.min.css") }}" />
17 <link rel="stylesheet" type="text/css" href="{{ static_url("css/style.css") }}" />
18 <link href="//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 data-spy="scroll" data-target=".sidebar">
27 <div class="navbar navbar-fixed-top navbar-inverse" role="navigation">
28 <div>
29 <div class="container">
30 <div class="navbar-header">
31 <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
32 <span class="sr-only">Toggle navigation</span>
33 <span class="icon-bar"></span>
34 <span class="icon-bar"></span>
35 <span class="icon-bar"></span>
36 </button>
37 <a class="navbar-brand" href="/">
38 {{ hostname }}
39 </a>
40 </div>
41 <div class="collapse navbar-collapse" id="navbar">
42 {% block menu %}
43 {% module Menu() %}
44 {% end block %}
45 </div>
46 </div>
47 </div>
48 </div>
49
50 {% block container %}
51 {% block header %}{% end block %}
52
53 <div class="container container-body">
54 {% block body %}EMPTY BODY{% end block %}
55 </div>
56 {% end block %}
57
58 {% block footer %}
59 <footer class="footer">
60 <div class="container">
61 <ul class="list-unstyled list-inline pull-right">
62 <a href="http://www.ipfire.org/imprint">{{ _("Imprint") }}</a>
63
64 {% if hostname == "wishlist.ipfire.org" %}
65 <li class="text-muted">&middot;</li>
66 <li>
67 <a href="/terms">{{ _("Terms & Conditions") }}</a>
68 </li>
69 {% end %}
70 </ul>
71
72 <p>
73 &copy; {{ year }} - {{ _("IPFire is free software") }}
74
75 {% if ssl_protocol %}
76 &bull; <span class="fa fa-lock"></span>
77 {{ ssl_protocol }}
78
79 {% if ssl_cipher %}({{ ssl_cipher }}){% end %}
80 {% end %}
81 </p>
82 </div>
83 </footer>
84 {% end block %}
85
86 <script src="{{ static_url("js/jquery.js") }}"></script>
87 <script src="{{ static_url("js/bootstrap.min.js") }}"></script>
88 <script src="{{ static_url("js/site.js") }}"></script>
89 </body>
90 </html>