]> jfr.im git - irc/freenode/web-7.0.git/blame - templates/base.html
Adding analytics
[irc/freenode/web-7.0.git] / templates / base.html
CommitLineData
df74dd1d 1<!DOCTYPE html>
df74dd1d
SB
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">
67967fac 9 <link rel="icon" href="{{ url_for("static/img/logos/coloured-alphabg-sq-120.png") }}">
4f56ae6c 10 <title>{{ title }}</title>
96cc65dc
EK
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">
df74dd1d 14</head>
df74dd1d
SB
15<body>
16 <nav class="navbar">
96cc65dc
EK
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>
df74dd1d 19 </nav>
df74dd1d 20 <div class="container">
ce9965da 21 {% block content %}{% endblock %}
df74dd1d
SB
22 </div>
23 </div>
ce9965da 24 <div class="footers">
e874bcf7 25 {% include "footer.html" %}
ce9965da 26 </div>
0a60693f 27 {% include "analytics.html" %}
df74dd1d 28</body>
8978a3db 29</html>