-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (80 loc) · 3.12 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Do While Progress - Always progressing. Always in progress.</title>
<meta
name="description"
content="Always progressing. Always in progress."
/>
<link rel="canonical" href="https://dowhileprogress.com/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#666666" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/svg+xml" href="/images/app-icons/icon.svg" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="Do While Progress" />
<meta name="application-name" content="Do While Progress" />
<meta name="msapplication-TileColor" content="#666666" />
<!-- Open Graph tags (https://ogp.me/) -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://dowhileprogress.com/" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="Do While Progress" />
<meta property="og:title" content="Do While Progress" />
<meta
property="og:description"
content="Always progressing. Always in progress."
/>
<meta
property="og:image"
content="https://dowhileprogress.com/images/dowhileprogress-open-graph-image.png"
/>
<meta property="og:image:alt" content="Do While Progress Logo" />
<link rel="manifest" href="/manifest.json" />
<link rel="stylesheet" href="/styles/main.css" />
<script defer src="/scripts/main.js"></script>
</head>
<body>
<main class="gui-window">
<header class="gui-title-bar">
<span class="gui-window-icon"></span>
<h1 class="gui-window-title">Do While Progress</h1>
<menu class="gui-window-controls">
<li class="gui-window-control gui-window-control-minimize"></li>
<li class="gui-window-control gui-window-control-maximize"></li>
<li class="gui-window-control gui-window-control-close"></li>
</menu>
</header>
<article class="gui-window-contents">
<div class="gui-app-code-editor">
<code>
<p>do {</p>
<p> learn();</p>
<p> create();</p>
<p> grow();</p>
<p>} while (progress);</p>
</code>
</div>
<div class="gui-app-logo">
<img
class="word-mark"
src="/images/dowhileprogress-word-mark.svg"
alt="Do While Progress Word Mark"
width="100%"
height="100%"
/>
<p class="slogan">
<span>Always progressing.</span>
<span>Always in progress.</span>
</p>
</div>
</article>
</main>
<footer>
Copyright © <span id="copyright-year">2023</span> Do While Progress
</footer>
</body>
</html>