-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
55 lines (55 loc) · 2.96 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
<!DOCTYPE html>
<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?v=202502">
<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">
<script src="/sites.js"></script>
<script src="/functions.js"></script>
<script src="https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.x.x/dist/alpine.min.js" defer></script>
</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>
</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 an Unoffice Hours page and the webring links to your site, you’re ready to join.</p>
<p><a href="https://github.com/dave-smyth/unoffice-hours-webring#how-to-submit-your-site">Instructions on GitHub →</a></p>
<p><em>Unfamiliar with Github? <a href="mailto:hello@davesmyth.studio">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>