-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (89 loc) · 3.47 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<title>aical.art</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="News headlines, calendar events, holidays, random styles, and the ever-present orange tabby Hobbes turn into art via GPT + DALL-E.">
<meta name="keywords" content="web, software, ai, Python, DALL-E, ChatGPT, art, calendar, cat, Hobbes, GPT-4, GPT-4-turbo, gpt-4-1106-preview, dall-e-3">
<meta name="author" content="Chimera Tier">
<link rel="preload" href="./static/css/style.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<link rel="stylesheet" href="./static/css/style.css" media="print" onload="this.onload=null;this.media='all'">
<noscript><link rel="stylesheet" href="./static/css/style.css"></noscript>
<link rel="preload" href="./static/fonts/alegreya-sans-sc-v23-latin-500.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<link rel="preload" href="./static/fonts/alegreya-sans-v24-latin-regular.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<link rel="preconnect" href="https://us.umami.is">
<script src="./static/js/site.js" defer></script>
<script async src="https://us.umami.is/script.js" data-website-id="c7689907-ea33-4b68-9459-a6084b59cc39"></script>
<link rel="apple-touch-icon" sizes="180x180" href="./static/images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./static/images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./static/images/icons/favicon-16x16.png">
<link rel="shortcut icon" href="./static/images/icons/favicon.ico">
<link rel="manifest" href="./static/site.webmanifest">
<style>
body {
visibility: hidden;
}
</style>
</head>
<body>
<div class="modal-container">
<div id="aboutModal" class="modal">
<div class="modal-content">
<span class="close"></span>
<p id="modalAboutTitle" class="modal-text-common">
Keyboard Shortcuts
</p>
<table class="modal-text-common keyboard-shortcuts">
<tr>
<td>?</td>
<td>Show/hide this modal</td>
</tr>
<tr>
<td>p</td>
<td>Show/hide the day's prompt</td>
</tr>
<tr>
<td>c</td>
<td>Copy image url to clipboard</td>
</tr>
<tr>
<td>←</td>
<td>Go back one day</td>
</tr>
<tr>
<td>→</td>
<td>Go forward one day</td>
</tr>
<tr>
<td>k</td>
<td>Start/pause Ken Burns-ish effect</td>
</tr>
<tr>
<td>q</td>
<td>Quit Ken Burns-ish effect</td>
</tr>
</table>
</div>
</div>
</div>
<div class="modal-container">
<div id="promptModal" class="modal">
<div class="modal-content">
<span class="close"></span>
<p id="modalDate" class="modal-text-common"></p>
<p id="modalHolidays" class="modal-text-common"></p>
<p id="modalText" class="modal-text-common"></p>
<p id="modalStyle" class="modal-text-common"></p>
</div>
</div>
</div>
<div class="bg-image"></div>
<script>
document.fonts.ready.then(function () {
document.body.style.visibility = 'visible';
});
</script>
</body>
</html>