1
0
mirror of synced 2026-01-21 15:01:02 -05:00
Files
docs/layouts/error-500.html
Jason Etcovitch caaee7a124 Update all files to use {% data %} (#15253)
* Add back changes from prior to purge

* Manually fix some invalid Liquid

* Updoot render-content

* Improve test messages to show correct output

* Run el scripto

* Pass the remaining test
2020-09-29 16:01:04 -04:00

28 lines
703 B
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="https://octodex.github.com/images/labtocat.png" alt="labtocat">
</article>
</div>
<!-- {{ content }} -->
{% include support %}
{% include footer %}
</body>
</html>