]> jfr.im git - irc/freenode/web-7.0.git/blob - templates/base.html
Update policies.md
[irc/freenode/web-7.0.git] / templates / base.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <meta content="IE=edge" http-equiv="X-UA-Compatible">
6 <meta content="width=device-width, initial-scale=1" name="viewport">
7 {#- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags #}
8 <meta name="theme-color" content="#292f2f">
9 <meta name="description" content="{{ config.DESCRIPTION }}">
10 <link rel="icon" href="{{ url_for("static/img/logos/coloured-alphabg-sq-120.png") }}">
11 {%- block links %}
12 <link rel="alternate" type="application/rss+xml" href="{{ url_for("news/rss") }}" title="news (rss)">
13 <link rel="alternate" type="application/atom+xml" href="{{ url_for("news/atom") }}" title="news (atom)">
14 {%- endblock %}
15 <title>{% block title %}{{ title }} - {{ config.name }}{% endblock %}</title>
16 {%- for stylesheet in ['open-sans.css', 'font-awesome.css', 'style.css'] %}
17 <link href="{{ url_for("static/css/" + stylesheet) }}?{{ git_hash }}" rel="stylesheet">
18 {%- endfor %}
19 </head>
20 <body>
21 <nav class="navbar">
22 <a id="nav-jump" class="invisible" href="#navigation">Jump to navigation</a>
23 <a id="nav-logo" href="{{ url_for("index") }}"><img alt="freenode" class="nlogo" src="{{ url_for("static/img/logos/coloured-alphabg.svg") }} "></a>
24 <a id="nav-pia" href="https://www.privateinternetaccess.com/pages/buy-vpn/freend/" target="_blank"><img alt="Private Internet Access" class="nlogo" src="{{ url_for("static/img/logos/PIALogo_white.svg") }}"></a>
25 <form id="nav-search" action="https://www.google.com/cse">
26 <input type="hidden" name="cx" value="partner-pub-3720690829065633:9p8fr4-u91g">
27 <input type="hidden" name="ie" value="ISO-8859-1">
28 <label for="search" class="invisible">Query:</label>
29 <input id="nav-searchbox" type="text" name="q" placeholder="Search using Google">
30 <label id="nav-label" for="nav-searchbox"><i class="fa fa-search fa-lg"></i></label>
31 <input id="nav-submit" type="submit" class="invisible" value="Search using Google">
32 </form>
33 </nav>
34 <div class="container">
35 {% block content %}{% endblock %}
36 </div>
37 <div class="footers">
38 <a id="navigation"></a>
39 {% include "footer.html" %}
40 </div>
41 </body>
42 </html>