-
Notifications
You must be signed in to change notification settings - Fork 10
/
404.html
145 lines (132 loc) · 4.34 KB
/
404.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
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
<!DOCTYPE html>
<html lang="en">
<!--
[[[[[[[[[[[[[[[ ]]]]]]]]]]]]]]]
[:::::::::::::: ::::::::::::::]
[:::::::::::::: ::::::::::::::]
[::::::[[[[[[[: :]]]]]]]::::::]
[:::::[ ]:::::]
[:::::[ ]:::::]
[:::::[ ]:::::]
[:::::[ ]:::::]
[:::::[ CODE THE WEB ]:::::]
[:::::[ http://brackets.io ]:::::]
[:::::[ ]:::::]
[:::::[ ]:::::]
[:::::[ ]:::::]
[:::::[ ]:::::]
[::::::[[[[[[[: :]]]]]]]::::::]
[:::::::::::::: ::::::::::::::]
[:::::::::::::: ::::::::::::::]
[[[[[[[[[[[[[[[ ]]]]]]]]]]]]]]]
-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Brackets - Page Not Found (404)</title>
<link rel="stylesheet" href="/css/normalize.css" />
<link rel="stylesheet" href="/css/foundation.min.css" />
<link rel="stylesheet" href="/css/brackets.io.css" />
<!-- Boxicons -->
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<!-- This needs to be at the top, not at the bottom like the other JS. Source Sans Pro - Light, Regular, Italic, Semibold -->
<script src="//use.edgefonts.net/source-sans-pro:n3,n4,n6,i3,i4;source-code-pro:n4.js"></script>
<!-- These stop FOUT -->
<style type="text/css">
.wf-loading h1,
.wf-loading h2,
.wf-loading h3,
.wf-loading h4,
.wf-loading h5,
.wf-loading h6,
.wf-loading p,
.wf-loading a {
visibility: hidden;
}
</style>
<link rel="shortcut icon" href="/favicon.ico" />
</head>
<body>
<!-- Navigation Menu -->
<div class="navbar w-nav">
<div class="navbar-base">
<div class="navigation-container">
<div class="navigation-side">
<a href="/" class="brand w-nav-brand w--current">
<img src="./img/brackets.svg" alt="Brackets logo" class="logo" />
</a>
</div>
<nav class="nav-menu w-nav-menu" id="nav-menu">
<a
href="contribute.html"
data-i18n="nav.contribute"
class="nav-link w-inline-block"
>
Contribute
</a>
<a
href="docs/current/modules/brackets.html"
data-i18n="nav.apidocs"
class="nav-link w-inline-block"
>
API Docs
</a>
<a
href="https://registry.brackets.io"
data-i18n="nav.extensions"
class="nav-link w-inline-block"
>
Extensions
</a>
<a
href="https://github.com/brackets-cont/brackets/wiki/Troubleshooting"
data-i18n="nav.support"
class="nav-link w-inline-block"
>
Suppport
</a>
<a
href="https://www.github.com/brackets-cont/brackets"
class="nav-link w-inline-block"
>
GitHub
</a>
</nav>
<div class="navigation-link-right desktop-link">
<a href="#">
<button class="download-button">Download</button>
</a>
</div>
<div class="hamburgerMenuIcon" id="hamburger">
<i class="bx bx-menu"></i>
</div>
</div>
</div>
</div>
<!-- End of Navigation Menu -->
<div id="hero-wrapper" class="gradient">
<div id="hero" class="row no-bg-img">
<div class="large-12 columns">
<h1>Oops! Looks like you've been lost</h1>
<p>
Check if you have the right URL or go to the
<a href="/">Homepage</a>.
</p>
</div>
</div>
</div>
<script src="js/vendor/jquery.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XHYXL1VHXW"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XHYXL1VHXW');
</script>
<script src="/js/nav.js"></script>
</body>
</html>