-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathheader.html
More file actions
32 lines (30 loc) · 1.86 KB
/
header.html
File metadata and controls
32 lines (30 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="{{ "/assets/img/favicon.ico" | relative_url }}" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="{{ "/assets/css/style.css" | relative_url }}">
<link rel="preload" as="font" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i" crossorigin>
{% seo %}
{% if page.url == "/community/" %}
<script defer src="{{ "/assets/js/community.js" | relative_url}}"></script>
{% elsif page.url == "/" %}
<script defer src="{{ "/assets/js/home.js" | relative_url}}"></script>
{% endif %}
</head>
<body{% if page.id %} id="{{ page.id }}"{% endif %} class="{{ page.layout }}">
<div class="page-header pt-4 pb-5">
<div class="container-lg">
<div class="text-center">
<a href="{{ "/" | relative_url}}"><img class="logo py-3" src="{{ "/assets/img/logomark.svg" | relative_url}}" alt="GitHub and Government" decoding="async"></a>
<ul>
<li class="text-center d-block d-sm-inline-block px-1 px-md-3"><a href="{{ "/community/" | relative_url}}" class="text-white">Who's using GitHub</a></li>
<li class="text-center d-block d-sm-inline-block px-1 px-md-3"><a href="https://github.com/government/welcome#readme" class="text-white">Peer Group</a></li>
<li class="text-center d-block d-sm-inline-block px-1 px-md-3"><a href="{{ "/accessibility" | relative_url}}" class="text-white">Accessibility</a></li>
<li class="text-center d-block d-sm-inline-block px-1 px-md-3"><a href="{{ "/#contact-a-human" | relative_url}}" class="text-white">Contact</a></li>
</ul>
</div>
</div>
<!-- .full-width here gets closed on support-page.html and home.html layouts -->