-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (65 loc) · 2.65 KB
/
index.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en" prefix="og: https://ogp.me/ns#">
<head>
<!-- -- Common -- -->
<base target="_blank" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="referrer" content="no-referrer">
<meta http-equiv="Content-Security-Policy" content="
default-src 'none';
style-src https://fonts.googleapis.com/ 'self';
font-src https://fonts.gstatic.com/;
img-src 'self';
form-action 'none'
" />
<link rel="icon" href="/favicon.png" />
<link rel="stylesheet" href="/style.css" />
<!-- Mastadon Verification -->
<link rel="me" href="https://infosec.exchange/@wtsdev" />
<!-- Twitter/X use the standard "name" attribute -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@wtsdev" />
<meta name="twitter:creator" content="@wtsdev" />
<!-- Facebook/OpenGraph use the non-standard "property" attribute -->
<meta property="og:site_name" content="Watch This Space" />
<meta property="og:image" content="https://wts.dev/favicon.png" />
<meta property="og:image:secure_url" content="https://wts.dev/favicon.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:alt" content="A large purple letter W on a light tan background" />
<!-- -- Page-Specific -- -->
<!-- Styles -->
<link rel="stylesheet" href="/expansion.css" />
<link rel="stylesheet" href="/landing.css" />
<!-- URL -->
<link rel="canonical" href="https://wts.dev/" />
<meta property="og:url" content="https://wts.dev/" />
<!-- Title -->
<meta property="og:title" content="Watch This Space - Home" />
<title>Watch This Space - Home</title>
<!-- Description -->
<meta name="description" content="A security research blog." />
<meta property="og:description" content="A security research blog." />
<!-- Additional -->
<meta property="og:type" content="website" />
<meta name="author" content="Noah Gregory" />
</head>
<body id="landing">
<nav>
<a target="_self" id="about" title="About" href="/about">About</a>
<a target="_self" id="posts" title="Posts" href="/posts">Posts</a>
</nav>
<main>
<div class="expansion" id="landing-expansion">
<div class="components" title="Watch This Space">
<span id="watch">Watch</span>
<span id="this">This</span>
<span id="space">Space</span>
</div>
<a type="application/atom+xml" target="_self" href="/feed.xml" id="feed" class="link" title="Feed for Watch This Space">Subscribe</a>
</div>
</main>
</body>
</html>