* 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>
28 lines
709 B
HTML
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>
|