1
0
mirror of synced 2025-12-30 03:01:36 -05:00
Files
docs/layouts/error-500.html
Jason Etcovitch 5d09adb106 Add/use small-footer for Actions landing page (#16265)
* Add/use small-footer

* Fix borked HTML

* Extract scripts to new include

* Add spacing

* Fix some padding

* Fix a test that uses /actions

* Fix old links

Co-authored-by: Sarah Schneider <sarahs@users.noreply.github.com>

* Update /developers in general footer

* Don't hard code free-pro-team

* Use the small-footer everywhere

* Tweak border

Co-authored-by: Sarah Schneider <sarahs@users.noreply.github.com>
2020-11-03 13:12:25 -05:00

28 lines
709 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 small-footer %}
</body>
</html>