]> jfr.im git - irc/freenode/web-7.0.git/blob - templates/base.html
done
[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 content="#fff" name="theme-color">
9 <link rel="icon" href="{{ url_for("static/img/logos/coloured-alphabg-sq-120.png") }}">
10 <title>{{ title }}</title>
11 <link href="{{ url_for("static/css/open-sans.css") }}" rel="stylesheet">
12 <link href="{{ url_for("static/css/style.css") }}" rel="stylesheet">
13 <link href="{{ url_for("static/css/font-awesome.min.css") }}" rel="stylesheet">
14 </head>
15 <body>
16 <nav class="navbar">
17 <a href="{{ url_for("index") }}"><img alt="freenode" class="nlogo" src="{{ url_for("static/img/logos/coloured-alphabg.svg") }} "></a>
18 <a href="PIA" target="_blank"><img alt="Private internet access" class="nlogo" src="{{ url_for("static/img/logos/PIALogo_black.svg") }}"></a>
19 </nav>
20 <div class="container">
21 {% block content %}{% endblock %}
22 </div>
23 </div>
24 <div class="footers">
25 {% include "footer.html" %}
26 </div>
27 {% include "analytics.html" %}
28 </body>
29 </html>