]> jfr.im git - irc/freenode/web-7.0.git/blame_incremental - templates/base.html
Merge branch 'master' into ssl-domain-warning
[irc/freenode/web-7.0.git] / templates / base.html
... / ...
CommitLineData
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 <title>{% block title %}{{ title }} - {{ config.name }}{% endblock %}</title>
12 {%- for stylesheet in ['open-sans.css', 'font-awesome.css', 'style.css'] %}
13 <link href="{{ url_for("static/css/" + stylesheet) }}?{{ git_hash }}" rel="stylesheet">
14 {%- endfor %}
15</head>
16<body>
17 <nav class="navbar">
18 <a href="{{ url_for("index") }}"><img alt="freenode logo" class="nlogo" src="{{ url_for("static/img/logos/coloured-alphabg.svg") }} "></a>
19 <a 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>
20 <a class="invisible" href="#navigation">Jump to navigation</a>
21 </nav>
22 <div class="container">
23 {% block content %}{% endblock %}
24 </div>
25 <div class="footers">
26 <a name="navigation"/>
27 {% include "footer.html" %}
28 </div>
29 {% include "analytics.html" %}
30</body>
31</html>