]> jfr.im git - irc/freenode/web-7.0.git/blame - templates/base.html
Update groupreg.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>
10fe6b49
EK
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 %}
df74dd1d 15</head>
df74dd1d
SB
16<body>
17 <nav class="navbar">
ffc164dc
EK
18 <a id="nav-jump" class="invisible" href="#navigation">Jump to navigation</a>
19 <a id="nav-logo" href="{{ url_for("index") }}"><img alt="freenode" class="nlogo" src="{{ url_for("static/img/logos/coloured-alphabg.svg") }} "></a>
20 <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>
21 <form id="nav-search" action="https://www.google.com/cse">
22 <input type="hidden" name="cx" value="partner-pub-3720690829065633:9p8fr4-u91g" />
23 <input type="hidden" name="ie" value="ISO-8859-1" />
24 <label for="search" class="invisible">Search:</label>
25 <input id="nav-searchbox" type="text" name="q"/>
26 <label id="nav-label" for="nav-searchbox"><i class="fa fa-search fa-lg"></i></label>
27 <input id="nav-submit" type="submit" class="invisible" value="Search" />
28 </form>
df74dd1d 29 </nav>
df74dd1d 30 <div class="container">
b9f1cb69 31 {% block content %}{% endblock %}
df74dd1d 32 </div>
ce9965da 33 <div class="footers">
834273d1 34 <a name="navigation"/>
b9f1cb69 35 {% include "footer.html" %}
ce9965da 36 </div>
0a60693f 37 {% include "analytics.html" %}
df74dd1d 38</body>
8978a3db 39</html>