]> jfr.im git - irc/freenode/web-7.0.git/blame - templates/base.html
Update support.md
[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 -->
545c8ea4 8 <meta name="theme-color" content="#292f2f">
5799f060 9 <meta name="description" content="{{ config.DESCRIPTION }}">
67967fac 10 <link rel="icon" href="{{ url_for("static/img/logos/coloured-alphabg-sq-120.png") }}">
fef2588f 11 <title>{% block title %}{{ title }} - {{ config.name }}{% endblock %}</title>
96cc65dc 12 <link href="{{ url_for("static/css/open-sans.css") }}" rel="stylesheet">
1a57c8d5 13 <link href="{{ url_for("static/css/font-awesome.css") }}" rel="stylesheet">
c1d6f0e2 14 <link href="{{ url_for("static/css/freenode.css") }}" rel="stylesheet">
d4b00db0 15 <link href="{{ url_for("static/css/style.css") }}" rel="stylesheet">
df74dd1d 16</head>
df74dd1d
SB
17<body>
18 <nav class="navbar">
729f0b86 19 <a href="{{ url_for("index") }}"><img alt="freenode" class="nlogo" src="{{ url_for("static/img/logos/coloured-alphabg.svg") }} "></a>
0ae41609 20 <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>
df74dd1d 21 </nav>
df74dd1d 22 <div class="container">
b9f1cb69 23 {% block content %}{% endblock %}
df74dd1d 24 </div>
ce9965da 25 <div class="footers">
b9f1cb69 26 {% include "footer.html" %}
ce9965da 27 </div>
0a60693f 28 {% include "analytics.html" %}
df74dd1d 29</body>
8978a3db 30</html>