-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
73 lines (73 loc) · 3.72 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
69
70
71
72
73
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Unoffice Hours Webring</title>
<meta name="description" content="A webring for people offering Unoffice Hours.">
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="stylesheet" href="/style.css">
<meta property="og:site_name" content="Unoffice Hours Webring">
<meta property="og:title" content="Unoffice Hours">
<meta property="og:description" content="A webring for people offering Unoffice Hours.">
<meta property="og:type" content="website">
<meta property="og:locale" content="en">
<meta property="og:url" content="https://unofficehours.com">
<meta property="og:image" content="https://unofficehours.com/social.png">
<meta property="og:image:width" content="1000">
<meta property="og:image:height" content="700">
<meta property="og:image:alt" content="">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@websmyth">
<meta name="twitter:creator" content="@websmyth">
<script type="application/ld+json" id="schema">
{
"@context": "http://schema.org",
"@type": "Organization",
"url": "https://unofficehours.com,
"name": "Unoffice Hours",
"logo": "https://unofficehours.com/social.png",
"sameAs": [
"https://twitter.com/websmyth"
]
}
</script>
<script src="/sites.js"></script>
<script src="/functions.js"></script>
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js" defer></script>
<link rel="stylesheet" href="https://use.typekit.net/bkp6whf.css">
</head>
<body x-data="sites = getSites()">
<main class="wrapper">
<article>
<header>
<h1>Unoffice Hours</h1>
<p class="subhead">A webring for people offering Unoffice Hours.</p>
<div class="buttons">
<a href="#people" class="button">People</a>
<a href="#about" class="button buttonAlt">Join + About</a>
</div>
</header>
<section id="people">
<h2>People</h2>
<ul class="peopleList">
<template x-for="(site, index) in sites" :key="index">
<li><a class="box" :href="site.url + '?ref=unoffice-hours-webring'"><span class="name" x-text="site.name"></span>
</a></li>
</template>
</ul>
</section>
<section id="about" class="flow">
<h2>Join</h2>
<p>If you host an Unoffice Hours, you can join the webring.</p>
<p>Once you’ve added the <a href="https://github.com/websmyth/unoffice-hours-webring#how-to-submit-your-site">webring links to your site</a>, you’re ready to join.</p>
<p><a href="https://github.com/websmyth/unoffice-hours-webring#how-to-submit-your-site" class="button">Instructions →</a></p>
<p><em>Unfamiliar with Github? <a href="mailto:[email protected]">Email Dave instead →</a></em></p>
<h2>About</h2>
<p>Matt Webb <a href="https://interconnected.org/home/2020/09/24/unoffice_hours">created Unoffice Hours</a> as a twist on office hours in September 2020.</p>
<p>This webring was launched in September 2021 to make it easier to find people offering Unoffice Hours. It’s maintained by <a href="https://davesmyth.com">Dave Smyth</a>.</p>
</section>
</article>
</main>
<script src="https://cdn.usefathom.com/script.js" data-site="DGYXDRDO" defer></script>
</body>
</html>