1
0
mirror of synced 2026-01-07 00:01:39 -05:00
Files
docs/layouts/error-500.html
Kevin Heis a017660a76 Include header/footer components across layout types (#18377)
* Flesh out our layouts to include header/footer components across layout types

* Update contribution.html

* Remove extra line that we don't need when we have the gray section
2021-03-25 10:01:13 -07:00

30 lines
751 B
HTML

<!doctype html>
<html lang="{{currentLanguage}}">
{% 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 %}
<img src="/assets/images/site/labtocat.png" alt="labtocat">
</article>
</div>
<!-- {{ content }} -->
{% include support-section %}
{% include small-footer %}
{% include scroll-button %}
</body>
</html>