Update get-organized.html
Browse files- get-organized.html +8 -34
get-organized.html
CHANGED
@@ -4,9 +4,9 @@
|
|
4 |
<meta charset="UTF-8" />
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
6 |
<title>Infer</title>
|
7 |
-
<link rel="stylesheet" href="styles.css" />
|
8 |
-
<link rel="icon" type="image/svg+xml" href="assets/favicon.svg" />
|
9 |
-
<link rel="icon" type="image/png" href="assets/favicon.png" />
|
10 |
</head>
|
11 |
<body>
|
12 |
<header class="main-header">
|
@@ -62,15 +62,15 @@
|
|
62 |
<h3>Join the conversation.</h3>
|
63 |
<a class="org-btn" href="#"
|
64 |
><span>Join the mailing list</span
|
65 |
-
><img src="assets/email_icon.svg" alt="Email"
|
66 |
/></a>
|
67 |
<a class="org-btn" href="#"
|
68 |
><span>Connect on Discord</span
|
69 |
-
><img src="assets/discord_logo.svg" alt="Discord"
|
70 |
/></a>
|
71 |
<a class="org-btn" href="#"
|
72 |
><span>Connect on Signal</span
|
73 |
-
><img src="assets/signal_logo.svg" alt="Signal"
|
74 |
/></a>
|
75 |
</div>
|
76 |
</div>
|
@@ -91,32 +91,6 @@
|
|
91 |
</p>
|
92 |
</div>
|
93 |
</div>
|
94 |
-
<script>
|
95 |
-
document.addEventListener('DOMContentLoaded', function() {
|
96 |
-
var aboutOverlay = document.getElementById('aboutOverlay');
|
97 |
-
var aboutCloseBtn = document.getElementById('aboutCloseBtn');
|
98 |
-
var aboutLink = Array.from(document.querySelectorAll('.nav-link')).find(function(link) {
|
99 |
-
return link.textContent.trim().toLowerCase() === 'about';
|
100 |
-
});
|
101 |
-
if (aboutLink) {
|
102 |
-
aboutLink.addEventListener('click', function(e) {
|
103 |
-
e.preventDefault();
|
104 |
-
if (aboutOverlay) aboutOverlay.style.display = 'flex';
|
105 |
-
});
|
106 |
-
}
|
107 |
-
if (aboutCloseBtn) {
|
108 |
-
aboutCloseBtn.addEventListener('click', function() {
|
109 |
-
if (aboutOverlay) aboutOverlay.style.display = 'none';
|
110 |
-
});
|
111 |
-
}
|
112 |
-
if (aboutOverlay) {
|
113 |
-
aboutOverlay.addEventListener('click', function(e) {
|
114 |
-
if (e.target === aboutOverlay) {
|
115 |
-
aboutOverlay.style.display = 'none';
|
116 |
-
}
|
117 |
-
});
|
118 |
-
}
|
119 |
-
});
|
120 |
-
</script>
|
121 |
</body>
|
122 |
-
</html>
|
|
|
4 |
<meta charset="UTF-8" />
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
6 |
<title>Infer</title>
|
7 |
+
<link rel="stylesheet" href="static/styles.css" />
|
8 |
+
<link rel="icon" type="image/svg+xml" href="static/assets/favicon.svg" />
|
9 |
+
<link rel="icon" type="image/png" href="static/assets/favicon.png" />
|
10 |
</head>
|
11 |
<body>
|
12 |
<header class="main-header">
|
|
|
62 |
<h3>Join the conversation.</h3>
|
63 |
<a class="org-btn" href="#"
|
64 |
><span>Join the mailing list</span
|
65 |
+
><img src="static/assets/email_icon.svg" alt="Email"
|
66 |
/></a>
|
67 |
<a class="org-btn" href="#"
|
68 |
><span>Connect on Discord</span
|
69 |
+
><img src="static/assets/discord_logo.svg" alt="Discord"
|
70 |
/></a>
|
71 |
<a class="org-btn" href="#"
|
72 |
><span>Connect on Signal</span
|
73 |
+
><img src="static/assets/signal_logo.svg" alt="Signal"
|
74 |
/></a>
|
75 |
</div>
|
76 |
</div>
|
|
|
91 |
</p>
|
92 |
</div>
|
93 |
</div>
|
94 |
+
<script src="static/app.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
</body>
|
96 |
+
</html>
|