-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathbase.html.jinja
More file actions
36 lines (36 loc) · 1.28 KB
/
Copy pathbase.html.jinja
File metadata and controls
36 lines (36 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="HTTPSWatch tracks the HTTPS support of prominent websites.">
<meta name="viewport" content="width=800">
<title>HTTPSWatch | {% block subtitle %}{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="/static/main.css">
<link rel="icon" type="image/png" href="/static/favicon.png">
{% block extra_head %}{% endblock %}
</head>
<body>
{{ analytics }}
<header>
<nav class="header-nav">
<ul class="header-nav-list">
{% for page in meta["listings"] %}
<li>
{% if page.shortname is defined and listing is defined and page.shortname == listing.shortname %}
<span class="header-nav-link-current">{{ page.name }}</span>
{% else %}
<a class="header-nav-link" href="{{ page.external if page.external is defined else "/" + page.shortname }}">{{ page.name }}</a>
{% endif %}
</li>
{% endfor %}
</ul>
</nav>
</header>
<div id="content-wrapper">
{% block body %}{% endblock %}
<footer>
Created by <a href="https://benjamin.pe">Benjamin Peterson</a>. Last updated <time>{{ update_time }}</time>.
</footer>
</div>
</body>
</html>