* Add color mode selector in footer * Interpret color mode from cookie * Update render-page.js * Delete color-mode.js * Update render-page.js * Make this more resilient to HTML tag changes * Update scroll-button.scss
28 lines
774 B
HTML
28 lines
774 B
HTML
<!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>
|