forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror-500.html
More file actions
27 lines (23 loc) · 774 Bytes
/
error-500.html
File metadata and controls
27 lines (23 loc) · 774 Bytes
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
<!doctype html>
<html lang="{{currentLanguage}}" data-color-mode="$COLORMODE$" data-dark-theme="$DARKTHEME$" data-light-theme="$LIGHTTHEME$">
{% include head %}
<body>
{% include header %}
<div class="container-xl p-responsive py-9">
<article class="markdown-body col-md-10 col-lg-7 mx-auto">
<h1>{% data ui.errors.oops %}</h1>
<div class="lead-mktg mb-5">
{% data ui.errors.something_went_wrong %}
{% data ui.errors.we_track_errors %}
</div>
{% if error %}
<pre><code>{{ error.stack }}</code></pre>
{% endif %}
</article>
</div>
<!-- {{ content }} -->
{% include support-section %}
{% include small-footer %}
{% include scroll-button %}
</body>
</html>