-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
184 lines (176 loc) · 9.5 KB
/
404.html
File metadata and controls
184 lines (176 loc) · 9.5 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="The page you are looking for could not be found." />
<meta name="generator" content="Ignite v0.5.2" />
<title>Page Not Found</title>
<link href="/css/bootstrap.min.css" rel="stylesheet" />
<link href="/css/prism-xcode-dark.css" rel="stylesheet" data-highlight-theme="xcode-dark" />
<link href="/css/prism-xcode-light.css" rel="stylesheet" data-highlight-theme="xcode-light" />
<link href="/css/prism-plugins.css" rel="stylesheet" />
<link href="/css/bootstrap-icons.min.css" rel="stylesheet" />
<link href="/css/ignite-core.min.css" rel="stylesheet" />
<link href="https://adaengine.org" rel="canonical" />
<link href="/images/favicon.png" rel="icon" />
<script>(function() {
function getThemePreference() {
return localStorage.getItem('custom-theme') || 'auto';
}
function applyTheme(themeID) {
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
const lightThemeID = document.documentElement.getAttribute('data-light-theme') || 'light';
const darkThemeID = document.documentElement.getAttribute('data-dark-theme') || 'dark';
const actualThemeID = themeID === 'auto' ? (prefersDark ? darkThemeID : lightThemeID) : themeID;
document.documentElement.setAttribute('data-bs-theme', actualThemeID);
document.documentElement.setAttribute('data-theme-state', themeID);
}
function applySyntaxTheme() {
const syntaxTheme = getComputedStyle(document.documentElement)
.getPropertyValue('--syntax-highlight-theme').trim().replace(/"/g, '');
if (!syntaxTheme) return;
document.querySelectorAll('link[data-highlight-theme]').forEach(link => {
link.setAttribute('disabled', 'disabled');
});
const themeLink = document.querySelector(`link[data-highlight-theme="${syntaxTheme}"]`);
if (themeLink) {
themeLink.removeAttribute('disabled');
}
}
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', e => {
const currentTheme = getThemePreference();
if (currentTheme === 'auto') {
applyTheme('auto');
applySyntaxTheme();
}
});
const savedTheme = getThemePreference();
applyTheme(savedTheme);
applySyntaxTheme();
})();
</script>
<meta property="og:site_name" content="AdaEngine" />
<meta property="og:title" content="Page Not Found" />
<meta name="twitter:title" content="Page Not Found" />
<meta property="og:description" content="The page you are looking for could not be found." />
<meta name="twitter:description" content="The page you are looking for could not be found." />
<meta property="og:url" content="https://adaengine.org" />
<meta name="twitter:domain" content="adaengine.org" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:dnt" content="on" />
<link href="/styles/main.css" rel="stylesheet" />
<meta media="(prefers-color-scheme: light)" name="theme-color" content="#FFFFFF" />
<meta media="(prefers-color-scheme: dark)" name="theme-color" content="#00000066" />
</head>
<body>
<header class="header">
<div class="container content-restriction header-container">
<a href="/" class="header-logo link-plain"><h2>AdaEngine</h2></a>
<div class="burger-container">
<div id="burger">
<div class="bar topBar"></div>
<div class="bar bottomBar"></div>
</div>
</div>
<ul class="navigation">
<li class="navigation-item"><a href="/blog" class="navigation-item-link link-plain"><span>Blog</span></a></li>
<li class="navigation-item"><a href="/learn" class="navigation-item-link link-plain"><span>Learn</span></a></li>
<li class="navigation-item"><a href="/community" class="navigation-item-link link-plain"><span>Community</span></a></li>
<li class="navigation-item donate-button"><a href="/donate-page" class="link-plain">
<div class="navigation-item-link" style="color: rgb(255 255 255 / 100%); padding: 7px; background-color: var(--donate); border-radius: 12px" onmouseover="this.unhoveredStyle = this.style.cssText;
this.style.backgroundColor = 'var(--donate-darker)'" onmouseout="this.style.cssText = this.unhoveredStyle;">
<div class="text-center color-inherit hstack" style="gap: 2px">
<p class="mb-0 align-self-center">Donate</p>
<i class="mb-0 align-self-center bi-heart-fill" style="margin: 0px"></i>
</div>
</div></a></li>
</ul>
</div>
</header>
<div class="container content-restriction safe-area-insets">
<div style="padding-top: 40px; padding-bottom: 40px">
<div class="container content-restriction safe-area-insets">
<div class="vstack" style="gap: 20px">
<p class="mb-0 align-self-start" style="font-weight: 400; font-family: Primary; font-size: 3.5em">404 - Page not found!</p>
<div class="mb-0 align-self-start">
<p>To report an issue with the website, please open an </p>
<a href="https://github.com/adaengine/ada-website/" class="link-plain"><p>issue on GitHub.</p></a>
</div>
</div>
<picture>
<source media="(prefers-color-scheme: dark)" srcset="/images/ae_logo~dark.svg" />
<img src="/images/ae_logo.svg" alt="AdaEngine Logo" class="img-fluid ae-logo-header" style="height: 200px" />
</picture>
</div>
</div>
</div>
<footer class="footer">
<div class="container content-restriction safe-area-insets">
<div class="footer-container">
<div class="footer-columns row justify-content-center row-cols-1 row-cols-md-4" style="padding-bottom: 40px; row-gap: 40px">
<section class="col-md-3 align-self-start">
<h5>Ada Engine</h5>
<div class="vstack" style="padding-top: 16px; gap: 8px">
<a href="https://github.com/AdaEngine/AdaEngine/releases" class="mb-0 align-self-start">Download</a>
<a href="/documentation/adaengine/" class="mb-0 align-self-start">Documentation</a>
<a href="/features/" class="mb-0 align-self-start">Features</a>
<a href="https://github.com/AdaEngine/AdaEngine" class="mb-0 align-self-start">Source code</a>
</div>
</section>
<section class="col-md-3 align-self-start">
<h5>Project</h5>
<div class="vstack" style="padding-top: 16px; gap: 8px">
<a href="blog" class="mb-0 align-self-start">Blog</a>
<a href="community" class="mb-0 align-self-start">Communities</a>
</div>
</section>
<section class="col-md-3 align-self-start">
<h5>Foundation</h5>
<div class="vstack" style="padding-top: 16px; gap: 8px">
<a href="#" class="mb-0 align-self-start">About</a>
<a href="/donate-page" class="mb-0 align-self-start">Donate</a>
<a href="https://github.com/AdaEngine/AdaEngine/LICENSE" class="mb-0 align-self-start">License</a>
</div>
</section>
<div class="col-md-3 align-self-start">
<div class="ms-auto" style="height: 20px"></div>
</div>
</div>
<hr />
<div class="footer-bottom">
<div class="row justify-content-center row-cols-1 row-cols-md-6" style="row-gap: 16px">
<div class="col-md-6 align-self-center" style="font-weight: 400; font-size: 13px">
<div class="font-inherit vstack" style="gap: 8px">
<p class="mb-0 align-self-start">© 2021-2025 Vladislav Prusakov and contributors. All rights reserved.</p>
<a href="https://github.com/AdaEngine/ada-website.git" class="mb-0 align-self-start">Website source code on GitHub.</a>
<p class="text-center mb-0 align-self-start">Created in Swift with <a href="https://github.com/twostraws/Ignite">Ignite</a></p>
</div>
</div>
<div class="col-md-4 align-self-center">
<div class="ms-auto" style="height: 20px"></div>
</div>
<div class="col-md-2 align-self-center">
<div class="footer-social-icons hstack" style="gap: 12px">
<a href="https://github.com/AdaEngine/AdaEngine" class="mb-0 align-self-center link-plain"><i class="bi-github"></i></a>
<a href="https://iosdev.space/@vladprusakov" class="mb-0 align-self-center link-plain"><i class="bi-mastodon"></i></a>
<a href="https://www.reddit.com/r/AdaEngine/" class="mb-0 align-self-center link-plain"><i class="bi-reddit"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<script> (function(){
var burger = document.getElementsByClassName('burger-container')[0],
header = document.querySelector('header');
burger.onclick = function() {
header.classList.toggle('menu-opened');
}
}());</script>
<script src="/js/bootstrap.bundle.min.js"></script>
<script src="/js/syntax-highlighting.js"></script>
<script src="/js/ignite-core.js"></script>
</body>
</html>