-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathindex.html
44 lines (41 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Hundred Rabbits is a software studio aboard a sailboat.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@hundredrabbits">
<meta name="twitter:title" content="Hundred Rabbits">
<meta name="twitter:description" content="Hundred Rabbits is a software studio aboard a sailboat.">
<meta name="twitter:creator" content="@hundredrabbits">
<meta name="twitter:image" content="https://100r.co/media/services/icon.jpg">
<!-- Facebook -->
<meta property="og:title" content="Hundred Rabbits" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://100r.co" />
<meta property="og:image" content="https://100r.co/media/services/icon.jpg" />
<meta property="og:description" content="Hundred Rabbits is a software studio aboard a sailboat." />
<meta property="og:site_name" content="Hundred Rabbits" />
<!-- Redirect -->
<meta http-equiv = "refresh" content = "0; url=site/home.html" />
<link rel='stylesheet' type='text/css' href='links/main.css'>
<link rel='alternate' type='application/rss+xml' title='Hundred Rabbits Journal' href='http://100r.co/links/rss.xml' />
<link rel='shortcut icon' type='image/png' href='media/services/icon.png'>
<link rel='me' href='https://merveilles.town/@rek'/>
<link rel='me' href='https://merveilles.town/@neauoire'/>
<title>Hundred Rabbits</title>
</head>
<body>
<noscript>Continue to <a href='site/home.html'>site</a>.</noscript>
<script>
'use strict'
const filename = toFilename(window.location.hash || 'home')
window.location.replace(`./site/${filename}.html`)
function toFilename(str) {
return `${str}`.replace('#','').replace(/[\W_]+/g,"_").toLowerCase().trim()
}
</script>
</body>
</html>