-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
73 lines (73 loc) · 2.11 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
<head>
<script src="https://unpkg.com/telescopic-text/lib/index.js"></script>
<link
href="https://unpkg.com/telescopic-text/lib/index.css"
rel="stylesheet"
/>
<title>verses verses</title>
<meta
name="description"
content="A collection of transforming verses from the verses community."
/>
<meta property="og:image" content="/assets/android-chrome-512x512.png" />
<meta
property="twitter:image"
content="https://poems.verses.xyz/assets/android-chrome-512x512.png"
/>
<meta property="twitter:title" content="verses verses" />
<meta
name="twitter:description"
content="A collection of transforming verses from the verses community."
/>
<meta name="twitter:card" content="summary" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap"
rel="stylesheet"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/favicon-16x16.png"
/>
<link rel="manifest" href="/assets/site.webmanifest" />
<meta name="theme-color" content="#ede8e4" />
<link rel="stylesheet" type="text/css" href="./index.css" />
</head>
<body>
<div class="noise-gradient"></div>
<div class="two-pane">
<div id="sidebar">
<a href="https://verses.xyz">
<img id="versesLogoImg" src="./logo.png" />
</a>
<p>
A collection of transforming verses from the
<a href="https://verses.xyz/">verses</a> community.
</p>
<ul id="poem-list"></ul>
<p>
<a href="/about">Read more about this artifact</a> or
<a href="/test">write your own.</a>
</p>
</div>
<div id="text-container">
<div id="poems"></div>
</div>
</div>
<script src="./poems.js"></script>
<script src="./index.js"></script>
</body>