-
Notifications
You must be signed in to change notification settings - Fork 50
/
site-template.html
35 lines (31 loc) · 1023 Bytes
/
site-template.html
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
<!DOCTYPE HTML>
<html lang="en">
<meta charset="utf-8">
<title>@TITLE_GOES_HERE@ — WHATWG</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#3A7908">
<link rel="icon" crossorigin href="https://resources.whatwg.org/logo.svg">
<link rel="stylesheet" crossorigin href="https://whatwg.org/style/shared.css">
<link rel="stylesheet" crossorigin href="https://whatwg.org/style/subpages.css">
<header>
<hgroup>
<h1>
<a href="https://whatwg.org/">
<img id="main-logo" crossorigin src="https://resources.whatwg.org/logo.svg" alt>
WHATWG
</a>
</h1>
<p>@TITLE_GOES_HERE@</p>
</hgroup>
</header>
<nav class="buttonish-links">
<a href="https://spec.whatwg.org/">Standards</a>
<a href="https://whatwg.org/faq">FAQ</a>
<a href="https://whatwg.org/policies">Policies</a>
<a href="https://participate.whatwg.org/">Participate</a>
</nav>
@CONTENT_GOES_HERE@
<script>
"use strict";
navigator.serviceWorker.register("/service-worker.js");
</script>