-
Notifications
You must be signed in to change notification settings - Fork 59
/
index.html
32 lines (32 loc) · 1.57 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weird Wide Webring</title>
<meta name="description" content="The web needs a little more weird. These sites are helping.">
<link rel="icon" type="image/png" href="/favicon.png" sizes="16x16" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="/style.css">
<link href="https://fonts.googleapis.com/css2?family=Orbitron&display=swap" rel="stylesheet">
<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>
</head>
<body x-data="sites = getSites()">
<h1>Weird Wide Webring</h1>
<p>The web needs a little more weird. These sites are helping.</p>
<div class="list">
<template x-for="(site, index) in sites" :key="index">
<a class="box" :href="site.url + '?ref=weirdwidewebring'">
<span class="name" x-text="site.name"></span>
<span class="because" x-text="'HERE BECAUSE: ' + site.because"></span>
</a>
</template>
</div>
<p><a href="/join.html">Want to join?</a></p>
<a href="https://github.com/jackmcdade/weird-wide-webring">
<img class="github" src="/github.gif" alt="Join the Weird Wide Webring on Github" height="100" width="100" />
</a>
<a id="hit-counter" href="https://app.usefathom.com/share/hrpuytbn/weirdwidewebring.net" target="_blank"></a>
</body>
</html>